import { AuthProvider } from '@/components/providers/auth-provider'; export default function AuthLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Decorative pattern background */}
{/* Decorative shapes */}
{/* Content */}
{children}
); }