import Image from "next/image"; import Link from "next/link"; interface ItemProps { link: string; iconSrc: string; label: string; isActive: boolean; isNavHome?: boolean; classname?: string } export default function NavItem({ link, iconSrc, label, isActive, isNavHome, classname }: ItemProps) { return ( <> {label} ); }