import type { ReactNode } from "react"; import { AppCard } from "@/components/ui/app-card"; import { CardContent } from "@/components/ui/card"; type AppHeaderProps = { title: string; description?: string; actions?: ReactNode; }; export function AppHeader({ title, description, actions }: AppHeaderProps) { return (

{title}

{description ? (

{description}

) : null}
{actions ?
{actions}
: null}
); }