Added LogIn Page

This commit is contained in:
2026-01-20 17:31:34 +01:00
parent 66f73c3523
commit 5fd5f4a843
6 changed files with 145 additions and 29 deletions

View File

@@ -1,6 +1,14 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import "./globals.css";
const poppins = Poppins({
weight: ["300", "400", "500", "600", "700"],
subsets: ["latin"],
display: "swap",
variable: "--font-poppins",
});
export const metadata: Metadata = {
title: "Platform SaaS",
description: "Plateforme SaaS",
@@ -13,7 +21,7 @@ export default function RootLayout({
}>) {
return (
<html lang="fr">
<body>{children}</body>
<body className={poppins.variable}>{children}</body>
</html>
);
}