Appheaders2
mynaui/appheaders2FreeBlock
App headers are used to display a navigation bar at the top of a page.
Install it
npx shadcn@latest add https://mynaui.com/r/appheaders2.jsonSource
1import Logo from "@/ui/logo";2import { Avatar, AvatarFallback, AvatarImage } from "@/ui/avatar";3import { ChevronRight, Cog, Home, Users } from "@mynaui/icons-react";45export default function AppHeaders4() {6 return (7 <header className="border-b bg-background px-6 py-4">8 <div className="flex items-center justify-between">9 <div className="flex items-center gap-6">10 {/* App Logo */}11 <Logo />1213 {/* Breadcrumbs */}14 <nav className="hidden items-center gap-2 text-sm text-muted-foreground md:flex">15 <a16 href="/"17 className="flex items-center gap-1 hover:text-foreground"18 >19 <Home className="size-4 stroke-2" />20 <span>Dashboard</span>21 </a>2223 <ChevronRight className="size-3.5" />2425 <a26 href="/team"27 className="flex items-center gap-1 hover:text-foreground"28 >29 <Users className="size-4 stroke-2" />30 <span>Team</span>31 </a>3233 <ChevronRight className="size-3.5" />3435 <a36 href="/team/settings"37 className="flex items-center gap-1 text-foreground"38 >39 <Cog className="size-4 stroke-2" />40 <span className="font-medium">Settings</span>41 </a>42 </nav>43 </div>4445 {/* User Profile */}46 <div className="flex items-center gap-3">47 <div className="text-right">48 <div className="text-sm font-medium">Sarah Wilson</div>49 <div className="text-xs text-muted-foreground">Product Manager</div>50 </div>51 <Avatar className="size-8">52 <AvatarImage53 src="https://github.com/shadcn.png"54 alt="Sarah Wilson"55 />56 <AvatarFallback>SW</AvatarFallback>57 </Avatar>58 </div>59 </div>60 </header>61 );62}
What it pulls in
npm packages
Other registry items
Files it writes
More from mynaui
All 346 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| 40414041 | mynaui | Blocks | Free | no deps · 2 files | |
| 40424042 | mynaui | Blocks | Free | no deps · 2 files | |
| 40434043 | mynaui | Blocks | Free | no deps · 2 files | |
| 40444044 | mynaui | Blocks | Free | no deps · 2 files | |
| 40454045 | mynaui | Blocks | Free | no deps · 2 files | |
| App sheets1app-sheets1 | mynaui | Blocks | Free | no deps · 2 files | |
| App sheets2app-sheets2 | mynaui | Blocks | Free | no deps · 2 files | |
| App sheets3app-sheets3 | mynaui | Blocks | Free | no deps · 2 files |
