import ThemeSwitcher from "@app/components/ThemeSwitcher"; import AuthFooter from "@app/components/AuthFooter"; import { Metadata } from "next"; export const metadata: Metadata = { title: { template: `%s - ${process.env.BRANDING_APP_NAME || "Pangolin"}`, default: `Auth - ${process.env.BRANDING_APP_NAME || "Pangolin"}` }, description: "" }; type AuthLayoutProps = { children: React.ReactNode; }; export default async function AuthLayout({ children }: AuthLayoutProps) { return (
{children}
); }