"use client"; import type { ReactNode } from "react"; export function EmptySection(props: { title: string; description: ReactNode; status?: "soon" | "alpha"; }) { const { title, description, status = "soon" } = props; return (

{title}

{status === "soon" ? "coming soon" : "alpha"}

{description}

); }