mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-11 22:44:56 +02:00
added signup and verify email forms
This commit is contained in:
parent
41cbde1474
commit
f3eb76fd5e
14 changed files with 882 additions and 11 deletions
|
@ -1,6 +1,7 @@
|
|||
import type { Metadata } from "next";
|
||||
import "./globals.css";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Toaster } from "@/components/ui/toaster"
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: process.env.NEXT_PUBLIC_APP_NAME,
|
||||
|
@ -18,6 +19,7 @@ export default async function RootLayout({
|
|||
<html>
|
||||
<body className={`${font.className}`}>
|
||||
<main>{children}</main>
|
||||
<Toaster />
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue