"use client"; import Link from "next/link"; import Image from "next/image"; import { useState } from "react"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; const NAV_LINKS = [ { label: "Home", href: "/" }, { label: "Nearle for Business", href: "/businesses" }, { label: "Nearle for People", href: "/people" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }, ]; export function Navbar() { const [mobileOpen, setMobileOpen] = useState(false); return ( ); }