1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-10-18 21:14:26 -04:00

properly import and optimize/cache images in markdown files

This commit is contained in:
2025-03-03 15:56:57 -05:00
parent 36faa6c234
commit ba10742c9b
71 changed files with 685 additions and 1100 deletions

View File

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