import type { ReactNode } from "react"; function FabroLogo({ className }: { className?: string }) { return ( Fabro ); } export function AuthLayout({ children, footer, }: { children: ReactNode; footer?: ReactNode; }) { return (
{children}
{footer && (
{footer}
)}
); }