1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 19:08:26 -04:00
jarv.is/lib/config/menu.ts
2022-04-28 19:28:16 -04:00

26 lines
485 B
TypeScript

import { HomeIcon, NotesIcon, ProjectsIcon, ContactIcon } from "../../components/Icons";
import type { MenuItemProps } from "../../components/MenuItem";
export const menuItems: MenuItemProps[] = [
{
icon: HomeIcon,
text: "Home",
href: "/",
},
{
icon: NotesIcon,
text: "Notes",
href: "/notes",
},
{
icon: ProjectsIcon,
text: "Projects",
href: "/projects",
},
{
icon: ContactIcon,
text: "Contact",
href: "/contact",
},
];