import { Construction } from "lucide-react"; export default function Placeholder({ title, note }: { title: string; note?: string }) { return (

{title}

{note ?? `${title} screen — scaffolded. Wire to its API endpoints next.`}

); }