import { ThemeProvider } from "@/Components/ThemeProvider"; import { Navbar } from "@/Components/Landing/Navbar"; import { Footer } from "@/Components/Landing/Footer"; import { cn } from "@/lib/utils"; export default function GuestLayout({ children, variant = 'default' }: { children: React.ReactNode, variant?: 'default' | 'landing' }) { return (
{/* Global Background Pattern */} {/* SVG is white by default. In light mode, we invert it to black to be visible on white bg. */}
{children}
); }