> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tuturuuu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Navbar

> Preview Navbar, copy setup snippets, review examples, and inspect API exports for @tuturuuu/ui/navbar.

<Info>
  Explore the live, interactive preview at [tuturuuu.com/ui/components/navbar](https://tuturuuu.com/ui/components/navbar).
</Info>

**Category:** Navigation · **Import:** `@tuturuuu/ui/navbar` · **Status:** Pattern preview

## Installation

Install the shared UI package, import global styles once, then import the component from its public subpath.

```bash theme={null}
bun add @tuturuuu/ui
```

```tsx theme={null}
import '@tuturuuu/ui/globals.css';
import { Navbar } from '@tuturuuu/ui/navbar';
```

## Usage

Copy the default usage snippet and adapt labels, state, and event handlers to the product surface.

```tsx theme={null}
import { Navbar } from '@tuturuuu/ui/navbar';

<Navbar title="Tuturuuu" navigationMenu={<MainNavigation />} actions={<UserActions />} />
```

## Examples

Examples reuse the registry snippets so the docs stay aligned with the component catalog.

### Default

A minimal implementation using the current registry snippet.

```tsx theme={null}
import { Navbar } from '@tuturuuu/ui/navbar';

<Navbar title="Tuturuuu" navigationMenu={<MainNavigation />} actions={<UserActions />} />
```

### Package import

Import through the public package path so workspace and external apps share the same contract.

```tsx theme={null}
// Public package import
import { Navbar } from '@tuturuuu/ui/navbar';

// Workspace apps should keep importing through the package boundary.
```

## API reference

The public exports currently available from this component entry.

| Export   | Kind      |
| -------- | --------- |
| `Navbar` | component |

## Customization

Common props, states, and composition points to review before using this component.

* Logo
* Actions
* Navigation

## Related components

* [Breadcrumb](./breadcrumb)
* [Command](./command)
* [Quick Command Center](./quick-command-center)
