8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
export const navItems = [
|
|
{ href: "/#about", title: "About" },
|
|
{ href: "/blog", title: "Blog" },
|
|
{ href: "/stories", title: "Stories" },
|
|
];
|
|
|
|
export default navItems;
|