feat: add signin and signup page

This commit is contained in:
arraysid
2025-05-19 13:32:40 +07:00
parent d078999eec
commit 2de5fd56d8
7 changed files with 44 additions and 10 deletions
+3 -9
View File
@@ -1,8 +1,6 @@
import { poppins } from '@/lib/fonts';
import '@/styles/globals.css';
import { type Metadata } from 'next';
import { poppins } from '../../lib/fonts';
import '../../styles/globals.css';
import Footer from './_components/footer';
import { Header } from './_components/header';
import { ThemeProvider } from './_components/theme-provider';
export const metadata: Metadata = {
@@ -25,11 +23,7 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
<div className="flex min-h-screen flex-col">
<Header />
<main className="flex-1">{children}</main>
<Footer />
</div>
{children}
</ThemeProvider>
</body>
</html>