hangerthem.com/data/socialLinks.tsx
2024-08-12 15:15:13 +02:00

25 lines
416 B
TypeScript

import { Github, JournalAlbum } 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 />,
},
{
id: "blog",
href: "https://blog.hangerthem.com",
text: "Blog",
icon: <JournalAlbum />,
},
]
export default socialLink