AppNav
AppYatay navigasyon çubuğu. Masaüstünde inline linkler, mobilde NavDrawer açan hamburger gösterir. logo, navItems, actions slotları var.
Navigation
Acme
Page content — resize window to see mobile hamburger.
<AppNav
logo={<span className="font-bold text-primary">Acme</span>}
navItems={[
{ label: 'Home', href: '/', active: true },
{ label: 'Products', href: '/products' },
{ label: 'Pricing', href: '/pricing' },
]}
>
<Button variant="ghost" size="sm">Log in</Button>
<Button variant="primary" size="sm">Sign up</Button>
</AppNav>Navigation
Dashboard
Page content
<AppNav
logo={<span className="font-bold">Dashboard</span>}
navItems={[
{ label: 'Overview', active: true },
{ label: 'Analytics' },
{ label: 'Reports' },
]}
>
<UserMenu user={currentUser} />
</AppNav>