import React from 'react'; interface AuthLayoutProps { children: React.ReactNode; illustration?: React.ReactNode; } export const AuthLayout: React.FC = ({ children, illustration }) => { return (
{/* Dynamic Background Gradients - Lighter & Softer */}
{/* Illustration Side (Desktop) */} {illustration && (
{illustration}
)} {/* Form Side */}
{children}
); };