1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 14:25:31 -04:00

lucide icons

This commit is contained in:
2025-03-11 21:18:41 -04:00
parent 42d9470480
commit 8e89701453
20 changed files with 201 additions and 174 deletions

View File

@@ -1,25 +1,25 @@
import { FiHome, FiEdit3, FiCode, FiMail } from "react-icons/fi";
import { CodeIcon, HomeIcon, MailIcon, PencilLineIcon } from "lucide-react";
import type { MenuItemProps } from "../../components/MenuItem";
export const menuItems: MenuItemProps[] = [
{
text: "Home",
href: "/",
icon: FiHome,
icon: HomeIcon,
},
{
text: "Notes",
href: "/notes",
icon: FiEdit3,
icon: PencilLineIcon,
},
{
text: "Projects",
href: "/projects",
icon: FiCode,
icon: CodeIcon,
},
{
text: "Contact",
href: "/contact",
icon: FiMail,
icon: MailIcon,
},
];