Skip to content

Commit

Permalink
fixed linkedin broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
batistaDev1113 committed Dec 8, 2023
1 parent be6ba96 commit a2c53fb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions components/FooterComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<Footer
Expand All @@ -16,13 +19,13 @@ const FooterComponent = () => {
<Footer.Copyright href='#' by='Yunior Batista' year={2023} />
<div className='flex space-x-4 ml-8'>
<Footer.Icon
href='https://www.linkedin.com/in/yunior-batista-profile/'
href={LINKEDIN_URL}
target='_blank'
icon={BsLinkedin}
aria-label="Link to Yunior's LinkedIn profile"
/>
<Footer.Icon
href='https://github.com/batistaDev1113'
href={GITHUB_URL}
target='_blank'
icon={BsGithub}
aria-label="Link to Yunior's GitHub profile"
Expand Down

0 comments on commit a2c53fb

Please sign in to comment.