From be6ba96bd62eb7aa5de035228ed52803785c7db1 Mon Sep 17 00:00:00 2001 From: yundeveloper Date: Fri, 8 Dec 2023 17:57:55 -0500 Subject: [PATCH 1/2] some aria fixes --- components/FooterComponent.tsx | 9 ++++++++- components/Hero.tsx | 4 ++-- components/Navigation.tsx | 12 ++++++++++-- components/Project.tsx | 4 ++-- 4 files changed, 22 insertions(+), 7 deletions(-) diff --git a/components/FooterComponent.tsx b/components/FooterComponent.tsx index c7284b9..038bce3 100644 --- a/components/FooterComponent.tsx +++ b/components/FooterComponent.tsx @@ -19,13 +19,20 @@ const FooterComponent = () => { href='https://www.linkedin.com/in/yunior-batista-profile/' target='_blank' icon={BsLinkedin} + aria-label="Link to Yunior's LinkedIn profile" /> + - diff --git a/components/Hero.tsx b/components/Hero.tsx index a3c1a38..4c7f09d 100644 --- a/components/Hero.tsx +++ b/components/Hero.tsx @@ -84,7 +84,7 @@ const Hero = () => {
{ { - + Some Projects I've Built - + Contact Me diff --git a/components/Project.tsx b/components/Project.tsx index fe1c2a3..ebc1feb 100644 --- a/components/Project.tsx +++ b/components/Project.tsx @@ -51,9 +51,9 @@ const Project = ({ project }: ProjectProps) => { fetchPriority='low' />
-
+

{name} -

+

{description}

From a2c53fbfa70ef0b70f6c9108783711c7b014bdd2 Mon Sep 17 00:00:00 2001 From: yundeveloper Date: Fri, 8 Dec 2023 18:04:15 -0500 Subject: [PATCH 2/2] fixed linkedin broken link --- components/FooterComponent.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/components/FooterComponent.tsx b/components/FooterComponent.tsx index 038bce3..dcbe107 100644 --- a/components/FooterComponent.tsx +++ b/components/FooterComponent.tsx @@ -4,6 +4,9 @@ import { Footer } from "flowbite-react"; import { BsGithub, BsLinkedin } from "react-icons/bs"; import { RxCodesandboxLogo } from "react-icons/rx"; +const LINKEDIN_URL = "https://www.linkedin.com/in/yunior-profile/"; +const GITHUB_URL = "https://github.com/batistaDev1113"; + const FooterComponent = () => { return (