import { Metadata } from "next"; export const metadata: Metadata = { title: `Auth - Pangolin`, description: "", }; type AuthLayoutProps = { children: React.ReactNode; }; export default async function AuthLayout({ children }: AuthLayoutProps) { return ( <>
{children}
); }