# Main-nav ## Examples ### Default ```html ``` ### WithActiveItem ```html ``` ### WithDisabledItems ```html ``` ### MobileView ```html { const navigationData = { mainNav: [ { label: "Dashboard", href: "/dashboard" }, { label: "Settings", href: "/settings", active: true }, { label: "Profile", href: "/profile" } ], subNav: [ { label: "Account", href: "/settings/account" }, { label: "Security", href: "/settings/security", active: true }, { label: "Preferences", href: "/settings/preferences" } ], currentPage: "Security", currentLevel: 2 }; return html`

Mobile View (≤768px)

Resize your browser to ≤768px width to see mobile navigation

`; } ``` ### WithSlots ```html ```