import type { Metadata } from "next"; import { Toaster } from "sonner"; import "@/app/styles/new-site.css"; import "@/app/components/auth/auth.css"; export const metadata: Metadata = { title: "Vibn — Create your account", }; export default function SignUpLayout({ children, }: { children: React.ReactNode; }) { return ( <> {children} ); }