21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
import { FaGithub, FaLinkedinIn } from 'react-icons/fa6'
|
|
import { SiTryhackme } from 'react-icons/si'
|
|
|
|
export const SITE_SOCIAL = [
|
|
{
|
|
label: 'LinkedIn',
|
|
href: 'https://www.linkedin.com/in/florent-patruno-b4718323a/',
|
|
Icon: FaLinkedinIn,
|
|
},
|
|
{
|
|
label: 'GitHub',
|
|
href: 'https://github.com/Foufure13',
|
|
Icon: FaGithub,
|
|
},
|
|
{
|
|
label: 'TryHackMe',
|
|
href: 'https://tryhackme.com/p/Foufure',
|
|
Icon: SiTryhackme,
|
|
},
|
|
]
|