import { ReactNode } from "react"; import { ThemeSwitch } from "@/components/ThemeSwitch"; import { AuthBrand } from "./auth-brand"; interface AuthLayoutProps { title: string; footer?: ReactNode; children: ReactNode; } export const AuthLayout = ({ title, footer, children }: AuthLayoutProps) => { return (
{/* Background Pattern */}
{/* Auth Form Container */}
{/* Header with Title and Theme Toggle */}

{title}

{/* Content */} {children}
{footer &&
{footer}
}
); };