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