From c968a9dfcbd6133629d5eae6f17414c1c9ad96a0 Mon Sep 17 00:00:00 2001 From: Aurino Geraldo Date: Thu, 22 Feb 2024 16:38:25 -0300 Subject: [PATCH] fix: bugs --- package.json | 2 +- src/components/Contact/ContactCards/index.tsx | 2 +- src/components/Header/index.tsx | 10 ++++++---- src/components/Work/WorkCard/index.tsx | 8 +++----- src/components/Work/index.tsx | 1 - src/data/about.json | 2 +- src/data/work.json | 9 +++------ 7 files changed, 15 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index b4c8902..9944dbb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "aurino.dev", "private": true, - "version": "1.0.0", + "version": "1.0.1", "type": "module", "engines": { "node": ">=18" diff --git a/src/components/Contact/ContactCards/index.tsx b/src/components/Contact/ContactCards/index.tsx index e47f47f..05eaf0f 100644 --- a/src/components/Contact/ContactCards/index.tsx +++ b/src/components/Contact/ContactCards/index.tsx @@ -37,7 +37,7 @@ export function ContactItem({ name, user, link }: IContactItemProps) {
diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index 5b9336c..cd958a1 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -23,15 +23,17 @@ export function Header() { - + {menuData.items.map((m) => ( - - {m.name} - + + + {m.name} + + ))} diff --git a/src/components/Work/WorkCard/index.tsx b/src/components/Work/WorkCard/index.tsx index f2d5ab5..4666a65 100644 --- a/src/components/Work/WorkCard/index.tsx +++ b/src/components/Work/WorkCard/index.tsx @@ -5,7 +5,6 @@ interface IWorkCardProps { description: string role: string link: string - linkColor: string } export function WorkCard({ @@ -14,8 +13,7 @@ export function WorkCard({ description, role, workTime, - link, - linkColor + link }: IWorkCardProps) { return (
@@ -23,14 +21,14 @@ export function WorkCard({ {title} {tag && ( -
+
{tag}
)} diff --git a/src/components/Work/index.tsx b/src/components/Work/index.tsx index bd70e3d..4efe1d3 100644 --- a/src/components/Work/index.tsx +++ b/src/components/Work/index.tsx @@ -17,7 +17,6 @@ export function Work() { role={companie.role} workTime={companie.work_time} link={companie.link} - linkColor={companie.link_color} /> ))} diff --git a/src/data/about.json b/src/data/about.json index bd00aac..3592243 100644 --- a/src/data/about.json +++ b/src/data/about.json @@ -12,7 +12,7 @@ { "id": "instagram", "title": "Instagram de desenhos", - "link": "" + "link": "https://www.instagram.com/aurigod.art" } ] } diff --git a/src/data/work.json b/src/data/work.json index ced5732..3d693cb 100644 --- a/src/data/work.json +++ b/src/data/work.json @@ -7,8 +7,7 @@ "tag": "atual", "work_time": "out de 2023", "role": "Frontend developer", - "link": "https://mblabs.com.br/", - "link_color": "text-pink-600" + "link": "https://mblabs.com.br/" }, { "name": "GetNinjas", @@ -16,8 +15,7 @@ "tag": "", "work_time": "nov de 2020 - mai de 2023", "role": "Frontend developer", - "link": "https://www.getninjas.com.br/", - "link_color": "text-yellow-500" + "link": "https://www.getninjas.com.br/" }, { "name": "Catho", @@ -25,8 +23,7 @@ "tag": "", "work_time": "fev de 2018 - dez de 2019", "role": "Fullstack developer", - "link": "https://www.catho.com.br/", - "link_color": "text-sky-500" + "link": "https://www.catho.com.br/" } ] }