import { ReactNode } from "react"; function Container({ title, children, footer, className = "", bodyClassName = "", }: { title: string | ReactNode; children: React.ReactNode; footer?: ReactNode; className?: string; bodyClassName?: string; }) { return ( <>