1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-19 05:35:31 -04:00
Files
jarv.is/lib/config/menu.ts
T
2025-02-07 11:33:38 -05:00

26 lines
447 B
TypeScript

import { FiHome, FiEdit3, FiCode, FiMail } from "react-icons/fi";
import type { MenuItemProps } from "../../components/MenuItem";
export const menuItems: MenuItemProps[] = [
{
Icon: FiHome,
text: "Home",
href: "/",
},
{
Icon: FiEdit3,
text: "Notes",
href: "/notes",
},
{
Icon: FiCode,
text: "Projects",
href: "/projects",
},
{
Icon: FiMail,
text: "Contact",
href: "/contact",
},
];