import { useTheme } from '../lib/theme-context'; export default function AuthLayout({ children }) { const { theme } = useTheme(); return (
{/* Animated Fire Glow Background */}
{/* Floating Embers */}
{Array.from({ length: 12 }).map((_, i) => (
))}
{/* Content */}
{children}
); }