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

30 lines
338 B
TypeScript

type Link = {
id: string
href: string
text: string
}
const links: Link[] = [
{
id: "home",
href: "/",
text: "Home",
},
{
id: "about",
href: "#about",
text: "About",
},
{
id: "skills",
href: "#skills",
text: "Skills",
},
{
id: "contact",
href: "#contact",
text: "Contact me",
},
]
export default links