Files

63 lines
2.2 KiB
TypeScript
Raw Permalink Normal View History

'use client';
import * as React from 'react';
import Link from 'next/link';
import { usePathname } from 'next/navigation';
import { Menu, Search, Bell, ChevronRight, Moon, Sun, X } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils/cn';
import { useSidebar } from './SidebarProvider';
import Logo from '@/components/Logo';
export function AppHeader() {
const pathname = usePathname();
const { toggle, isOpen } = useSidebar();
// Custom breadcrumb logic
const pathSegments = pathname.split('/').filter(Boolean);
return (
<header className="h-16 border-b border-border bg-background/10 backdrop-blur-xl sticky top-0 z-40 flex items-center justify-between pl-8 pr-5 md:pr-9">
<div className="flex items-center gap-4">
<nav className="flex items-center text-sm font-medium">
2026-02-24 19:14:58 +01:00
<Link href="/" className="flex items-center gap-2">
<Logo size={20} className="lg:hidden" />
<span className="font-medium transition-colors text-muted-foreground">
Kit
</span>
</Link>
{pathSegments.map((segment, index) => {
const href = `/${pathSegments.slice(0, index + 1).join('/')}`;
const isLast = index === pathSegments.length - 1;
return (
<React.Fragment key={href}>
<ChevronRight className="h-4 w-4 mx-1 text-muted-foreground/30" />
<Link
href={href}
className={cn(
"capitalize transition-colors text-muted-foreground",
isLast ? "font-semibold" : "font-medium"
)}
>
{segment.replace(/-/g, ' ')}
</Link>
</React.Fragment>
);
})}
</nav>
</div>
<div className="flex items-center gap-2">
<Button
variant="ghost"
size="icon"
className="lg:hidden text-muted-foreground hover:text-foreground"
onClick={toggle}
>
{isOpen ? <X className="h-5 w-5" /> : <Menu className="h-5 w-5" />}
</Button>
</div>
</header>
);
}