hangerthem.com/data/links.ts
2024-08-12 12:53:20 +02:00

35 lines
404 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: "projects",
href: "#projects",
text: "Projects",
},
{
id: "contact",
href: "#contact",
text: "Contact me",
},
]
export default links