// ComingSoon.tsx — Page placeholder pour les sections en cours de développement import { LucideIcon, Construction } from 'lucide-react'; interface ComingSoonProps { title: string; subtitle?: string; icon?: LucideIcon; } export function ComingSoon({ title, subtitle, icon: Icon = Construction }: ComingSoonProps) { return (

{title}

{subtitle && (

{subtitle}

)}
Section en cours de développement
); }