import { useTheme } from '@/contexts/ThemeContext'; import Link from 'next/link'; interface SimpleHeaderProps { title: string; subtitle: string; syncing?: boolean; } export function SimpleHeader({ title, subtitle, syncing = false }: SimpleHeaderProps) { const { theme, toggleTheme } = useTheme(); return (
{/* Titre tech avec glow */}

{title}

{subtitle} {syncing && '• Synchronisation...'}

{/* Navigation */}
); }