A Navigation bar, visually like a tab bar that allows a dynamic content between nested navigation pages.
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} />