import { Search, Bell, ChevronDown } from 'lucide-react'; import { cn } from '@/lib/utils'; interface TopBarProps { title: string; description?: string; } export function TopBar({ title, description }: TopBarProps) { return (
{/* Page Title */}

{title}

{description && (

{description}

)}
{/* Right Section */}
{/* Search */}
{/* Notifications */} {/* Profile */}
); }