1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 15:48:31 -04:00
jarv.is/lib/config/menu.ts
2025-03-11 21:18:41 -04:00

26 lines
471 B
TypeScript

import { CodeIcon, HomeIcon, MailIcon, PencilLineIcon } from "lucide-react";
import type { MenuItemProps } from "../../components/MenuItem";
export const menuItems: MenuItemProps[] = [
{
text: "Home",
href: "/",
icon: HomeIcon,
},
{
text: "Notes",
href: "/notes",
icon: PencilLineIcon,
},
{
text: "Projects",
href: "/projects",
icon: CodeIcon,
},
{
text: "Contact",
href: "/contact",
icon: MailIcon,
},
];