hangerthem.com/data/socialLinks.tsx
2024-08-11 20:09:50 +02:00

19 lines
300 B
TypeScript

import { Github } from "react-bootstrap-icons"
type SocialLink = {
id: string
href: string
text: string
icon: React.ReactNode
}
const socialLink: SocialLink[] = [
{
id: "github",
href: "https://github.com/HangerThem",
text: "GitHub",
icon: <Github />,
},
]
export default socialLink