public/data/navItems.ts

9 lines
253 B
TypeScript
Raw Normal View History

2022-08-07 11:37:29 -04:00
export const navItems = [
2022-08-09 19:13:22 -04:00
{ href: "/#about", title: "About" },
2022-08-07 11:37:29 -04:00
{ href: "/blog", title: "Blog" },
{ href: "/stories", title: "Stories" },
{ href: "https://portfolio.eggworld.me", title: "Portfolio", dominant: true },
2022-08-07 11:37:29 -04:00
];
export default navItems;