import Link from "next/link"; interface EmptyStateProps { emoji?: string; title?: string; message: string; ctaLabel?: string; ctaHref?: string; className?: string; } export function EmptyState({ emoji = "💭", title, message, ctaLabel, ctaHref, className = "", }: EmptyStateProps) { return (
{title && (

{title}

)}

{message}

{ctaLabel && ctaHref && ( {ctaLabel} )}
); }