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 (
{title}