import clsx from "clsx"; interface ContentWrapperProps { children: React.ReactNode; className?: string; } export default function ContentWrapper({ children, className }: ContentWrapperProps) { return