"use client"; import Link from "next/link"; import Image from "next/image"; import { usePathname } from "next/navigation"; import { useState } from "react"; const navLinks = [ { label: "Chi siamo", href: "/#approccio" }, { label: "Servizi", href: "/#servizi" }, { label: "Metodo", href: "/#filosofia" }, { label: "Progetti", href: "/#progetti" }, ]; export default function Navbar() { const pathname = usePathname(); const [menuOpen, setMenuOpen] = useState(false); return ( ); }