diff --git a/src/Client/src/components/Footer.tsx b/src/Client/src/components/Footer.tsx index 706a944..a56079f 100644 --- a/src/Client/src/components/Footer.tsx +++ b/src/Client/src/components/Footer.tsx @@ -8,7 +8,7 @@ export default function Footer() {
-

+

© {currentYear} Beau Findlay. All rights reserved.

diff --git a/src/Client/src/components/SocialIcons.tsx b/src/Client/src/components/SocialIcons.tsx index 5f86245..c816a76 100644 --- a/src/Client/src/components/SocialIcons.tsx +++ b/src/Client/src/components/SocialIcons.tsx @@ -5,29 +5,36 @@ interface Props { } export default function SocialIcons({ size = 20 }: Props) { + const socialIcons = [ + { + name: "GitHub", + href: "https://github.com/bdfin", + icon: , + }, + { + name: "LinkedIn", + href: "https://www.linkedin.com/in/beau-findlay/", + icon: , + }, + { + name: "Email", + href: "mailto:me@beaufindlay.com", + icon: , + }, + ]; + return (
- - GitHub - - - - LinkedIn - - - - Email - - + {socialIcons.map((socialIcon) => ( + + {socialIcon.name} + {socialIcon.icon} + + ))}
); }