import { LucideIcon } from "lucide-react"; interface ComingSoonProps { title: string; description: string; icon: LucideIcon; phase: number; } export function ComingSoon({ title, description, icon: Icon, phase }: ComingSoonProps) { return (

{title}

{description}

Planned for Phase {phase}
); }