//==================================== // File: Navbar.tsx // componente Navbar // @author: "villari.andrea@libero.it" // @version: "1.0.0 2026-05-07" //==================================== "use client" import { useState , MouseEvent, ReactNode} from "react"; import Link from "next/link"; import GlobalStabilimentoSelector from "./GlobalStabilimentoSelector"; interface NavLink { href: string; label: string; } const navLinks: NavLink[] = [ { href: "/", label: "Home"}, { href: "/movimenti", label: "Movimenti"}, { href: "/articoli", label: "Articoli"}, { href: "/macchine", label: "Macchine"}, { href: "/utenti", label: "Utenti"}, ]; export default function Navbar({ actions }: { actions?: ReactNode }) { return ( ); }