1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-06-27 17:05:42 -04:00
Files
jarv.is/lib/config/menu.ts

31 lines
521 B
TypeScript

import { CodeIcon, HomeIcon, MailIcon, PencilLineIcon, type LucideIcon } from "lucide-react";
export type MenuItemConfig = {
text?: string;
href?: `/${string}`;
icon?: LucideIcon;
};
export const menuItems: MenuItemConfig[] = [
{
text: "Home",
href: "/",
icon: HomeIcon,
},
{
text: "Notes",
href: "/notes",
icon: PencilLineIcon,
},
{
text: "Projects",
href: "/projects",
icon: CodeIcon,
},
{
text: "Contact",
href: "/contact",
icon: MailIcon,
},
];