Components
Navbar
Components
Navbar
A Navigation bar, visually like a tab bar that allows a dynamic content between nested navigation pages.
Usage
import { Navbar } from '@turbostack/ui'
const navigation = [
{
label: "General",
href: `/${slug}/settings`,
segment: null,
},
{
label: "Team",
href: `/${slug}/settings/team`,
segment: "team",
},
{
label: "Billing",
href: `/${slug}/settings/billing`,
segment: "billing",
},
];
return <Navbar navigation={navigation} />
On this page