import type { Metadata } from "next"; import { Toaster } from "sonner"; import "../styles/new-site.css"; export const metadata: Metadata = { title: "Vibn — Sign In", }; export default function AuthLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }