import type { ReactNode } from 'react'; type Stat = { label: string; value: string; }; type PagePlaceholderProps = { tag: string; title: string; subtitle: string; description: string; stats?: Stat[]; actions?: ReactNode; }; export default function PagePlaceholder({ tag, title, subtitle, description, stats = [], actions, }: PagePlaceholderProps) { return (
{subtitle}
{description}