feat (login page): add a sign in / log in page

This commit is contained in:
Pierre Ryssen
2026-03-03 14:47:07 +01:00
parent 7905adb55d
commit 53c5d952b5
19 changed files with 1756 additions and 50 deletions

View File

@@ -1,5 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { SessionProvider } from "next-auth/react";
export const metadata: Metadata = {
title: "WYVIEW",
@@ -10,7 +11,9 @@ export default function RootLayout({ children }: { children: React.ReactNode })
return (
<html lang="fr">
<body className="bg-[#0a0d0f] text-white antialiased">
{children}
<SessionProvider>
{children}
</SessionProvider>
</body>
</html>
);