22 lines
389 B
TypeScript
22 lines
389 B
TypeScript
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}
|
|
<Toaster />
|
|
</>
|
|
);
|
|
}
|