1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 01:08:28 -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[] = [
{
text: "Home",
href: "/",
icon: FiHome,
},
{
text: "Notes",
href: "/notes",
icon: FiEdit3,
},
{
text: "Projects",
href: "/projects",
icon: FiCode,
},
{
text: "Contact",
href: "/contact",
icon: FiMail,
},
];