mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 19:28:27 -04:00
26 lines
471 B
TypeScript
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,
|
|
},
|
|
];
|