1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 19:28:27 -04:00
jarv.is/lib/config/menu.ts

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",
},
];