cool update

This commit is contained in:
gpatruno
2026-04-19 23:06:50 +02:00
parent 5c423bae47
commit baef85bd99
27 changed files with 398 additions and 306 deletions
+20
View File
@@ -0,0 +1,20 @@
import { FaGithub, FaLinkedinIn } from 'react-icons/fa6'
import { SiTryhackme } from 'react-icons/si'
export const SITE_SOCIAL = [
{
label: 'LinkedIn',
href: 'https://www.linkedin.com/',
Icon: FaLinkedinIn,
},
{
label: 'GitHub',
href: 'https://github.com/',
Icon: FaGithub,
},
{
label: 'TryHackMe',
href: 'https://tryhackme.com/',
Icon: SiTryhackme,
},
]