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...