'use client'; import { Menu } from 'lucide-react'; import { format } from 'date-fns'; import { es } from 'date-fns/locale'; import { Logo } from './Logo'; interface HeaderProps { onMenuClick: () => void; title: string; } export function Header({ onMenuClick, title }: HeaderProps) { const currentDate = format(new Date(), "EEEE, d 'de' MMMM 'de' yyyy", { locale: es, }); // Capitalizar primera letra const formattedDate = currentDate.charAt(0).toUpperCase() + currentDate.slice(1); return (
{/* Left section */}

{title}

{/* Right section */}
); }