import Link from "next/link"; import Logo from "./logo"; const Navbar = () => { const links = [ { name: "About", href: "#about" }, { name: "Clients", href: "#clients" }, { name: "Pricing", href: "#pricing" }, { name: "Contact", href: "#contact" }, ]; return ( ); }; export default Navbar;