import Image from "next/image"; import Link from "next/link"; interface NavItemProps { icon: string; label: string; isActive: boolean; href: string; } export default function NavItem({ icon, label, isActive, href }: NavItemProps) { return (
{label}
{label} ); }