Components
Loading preview...
import Navbar from "@/components/ui/navbar";
export default function Nav() {
const navProps = {
logo: 'MySite',
links: [
{ label: 'Home', href: '/' },
{ label: 'About', href: '/about' },
{ label: 'Services', href: '/services' },
{ label: 'Contact', href: '/contact' },
],
};
return (
<div>
<Navbar {...navProps} />
</div>
);
}