Skip to content

Commit 9aaf8b5

Browse files
feat: update projects
1 parent 892dab2 commit 9aaf8b5

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

app/assets/img/focalpoint.png

85.8 KB
Loading

app/components/Sections/Projects.tsx

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { Github, Send } from 'lucide-react'
55
import Link from 'next/link'
66
import phshopImg from '../../assets/img/phshop.png'
77
import currencyImg from '../../assets/img/currency.png'
8+
import focalPointImg from '../../assets/img/focalpoint.png'
89
import { Fade } from 'react-awesome-reveal'
910

1011
interface IProjects {
@@ -21,20 +22,30 @@ export const myProjects: IProjects[] = [
2122
name: 'PHShop',
2223
imgUrl: phshopImg,
2324
description:
24-
'PHShop é um projeto que simula o funcionamento de um e-commerce, permitindo que os usuários realizem login por meio do Google e efetuem compras. entre outras funcionalidades.',
25+
'PHShop é uma aplicação Full Stack que simula o funcionamento de um e-commerce, permitindo que os usuários realizem login por meio do Google e efetuem compras. entre outras funcionalidades.',
2526
appUrl: 'https://ph-shop.vercel.app',
2627
githubUrl: 'https://github.com/phpaulohenrique/ph-shop',
27-
techs: 'TypeScript, Javascript, NextJS, ReactJS, Stitches, Stripe, Prisma, RadixUI.',
28+
techs: 'TypeScript, Javascript, NextJS, ReactJS, Stitches, Stripe, Prisma, RadixUI',
2829
},
30+
2931
{
3032
name: 'The Currency Converter',
3133
imgUrl: currencyImg,
3234
description:
33-
'The Currency Converter é um projeto de conversão de moedas que exibe a taxa de câmbio entre diferentes moedas e gera um gráfico ilustrativo com o histórico da variação. entre outras funcionalidades.',
35+
'The Currency Converter é uma aplicação de conversão de moedas que exibe a taxa de câmbio entre diferentes moedas e gera um gráfico ilustrativo com o histórico da variação. entre outras funcionalidades.',
3436
appUrl: 'https://thecurrencytracker.vercel.app',
3537
githubUrl: 'https://github.com/phpaulohenrique/currency-converter',
3638
techs: 'TypeScript, Javascript, NextJS, ReactJS, TailwindCSS, ApexCharts.',
3739
},
40+
{
41+
name: 'Focal Point',
42+
imgUrl: focalPointImg,
43+
description:
44+
'Focal Point é uma aplicação para gestão de tarefas, permitindo criação de conta, login, criação de tarefas, edição, listagem e exclusão de tarefas. entre outras funcionalidades.',
45+
appUrl: 'https://focal-point-front-end.vercel.app/sign-up',
46+
githubUrl: 'https://github.com/phpaulohenrique/focal-point-front-end',
47+
techs: 'TypeScript, Javascript, NextJS, ReactJS, nodeJS, prisma, Docker, Fastify',
48+
},
3849
// {
3950
// name: 'PHShop3',
4051
// imgUrl: phshopImg,
@@ -59,7 +70,7 @@ export function Projects() {
5970
<h3 className="mb-8 text-center text-xl font-medium text-green-600">
6071
{project.name}
6172
</h3>
62-
<Image src={project.imgUrl} alt={project.name} className="w-full" />
73+
<Image src={project.imgUrl} alt={project.name} className="w-full " />
6374
<p className="mt-8 text-sm leading-relaxed">{project.description}</p>
6475
<p className="mt-6 text-sm leading-relaxed ">
6576
<span className="text-sm font-medium text-green-700">

app/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ export default function Home() {
2525
<span className="text-base text-gray-800">Paulo Henrique</span>
2626
</Link>
2727
<ul className="hidden items-center gap-3 text-sm text-gray-700 sm:flex ">
28-
<li className="rounded-md px-2 py-1 transition-colors duration-300 hover:bg-slate-300 hover:text-gray-800 ">
29-
<Link href="#about-me">Quem sou</Link>
30-
</li>
3128
<li className="rounded-md px-2 py-1 transition-colors duration-300 hover:bg-slate-300 hover:text-gray-800">
3229
<Link href="#projects">Projetos</Link>
3330
</li>
31+
<li className="rounded-md px-2 py-1 transition-colors duration-300 hover:bg-slate-300 hover:text-gray-800 ">
32+
<Link href="#about-me">Quem sou</Link>
33+
</li>
3434
<li className="rounded-md px-2 py-1 transition-colors duration-300 hover:bg-slate-300 hover:text-gray-800">
3535
<Link href="#knowledge">Conhecimentos</Link>
3636
</li>
@@ -88,7 +88,7 @@ export default function Home() {
8888
<h1 className="text-2xl text-slate-700 lg:text-3xl">
8989
Olá, eu sou o Paulo Henrique{' '}
9090
<Fade delay={200} triggerOnce>
91-
<strong className=" mb-3 block bg-gradient-frontend bg-clip-text p-4 text-[3.5rem] font-black uppercase leading-[4rem] tracking-tight text-transparent lg:text-[5rem]">
91+
<strong className=" mb-3 block bg-gradient-frontend bg-clip-text p-4 text-[3.8rem] font-black uppercase leading-[4rem] tracking-tight text-transparent lg:text-[5rem]">
9292
fullstack developer
9393
</strong>
9494
</Fade>
@@ -122,8 +122,8 @@ export default function Home() {
122122
<ArrowDown className="absolute bottom-12 h-5 w-5 animate-bounce text-purple-600 " />
123123
</section>
124124
<>
125-
<AboutMe />
126125
<Projects />
126+
<AboutMe />
127127
<Knowledge />
128128
<Contact />
129129
</>

0 commit comments

Comments
 (0)