From 10b08b5b8e63dd8bfb1b96e823938acf5701cc5d Mon Sep 17 00:00:00 2001 From: Mateus Elias Date: Sat, 28 Oct 2023 04:51:35 -0300 Subject: [PATCH] feat(pages/Home): add links to my social medias --- src/pages/Home/Home.tsx | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/src/pages/Home/Home.tsx b/src/pages/Home/Home.tsx index 8a0dad2..46aa787 100644 --- a/src/pages/Home/Home.tsx +++ b/src/pages/Home/Home.tsx @@ -31,11 +31,16 @@ import { BiLogoJava as JavaIcon, BiLogoGoogleCloud as GoogleCloudIcon, } from 'react-icons/bi'; -import { AiFillGithub as GitHubIcon } from 'react-icons/ai'; +import { + AiFillGithub as GitHubIcon, + AiFillLinkedin as LinkedInIcon, + AiFillMediumSquare as MediumIcon, +} from 'react-icons/ai'; import ProjectCard, { ProjectCardProps, } from '../../components/ProjectCard/ProjectCard'; import clsx from 'clsx'; +import Link from '../../components/Link/Link'; function Home() { const profilePicture = 'https://avatars.githubusercontent.com/u/52019009'; @@ -203,11 +208,37 @@ function Home() { thumbnail: 'https://raw.githubusercontent.com/mateuseap/palavrinha/main/public/favicon.png', }, - ]; + ]; + + const socialMedias = [ + { + url: 'https://www.linkedin.com/in/mateuseliasdeandradepereira/', + Icon: LinkedInIcon, + }, + { + url: 'https://github.com/mateuseap', + Icon: GitHubIcon, + }, + { + url: 'https://medium.com/@mateuselias', + Icon: MediumIcon, + }, + ]; return (
+
+ {socialMedias.map(({ url, Icon }) => ( + } + size='lg' + className='w-fit font-semibold' + /> + ))} +
-
+
Portfolio still under development...