mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 09:25:22 -04:00
26 lines
447 B
TypeScript
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",
|
|
},
|
|
];
|