1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-06-30 21:46:39 -04:00
Files
jarv.is/lib/config/menu.ts

30 lines
573 B
TypeScript

import ThemeToggle from "../../components/ThemeToggle";
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",
},
{
icon: ThemeToggle,
},
];