import { cn } from "@/lib/utils"; import { Background } from "./background"; export function BasicLayout({ title, description, children, tw, }: { title: string; description?: string | null; children?: React.ReactNode; tw?: string; }) { return (

{title}

{description ? (

{description}

) : null}
{children}
); }