Files
MAD-Platform/app/layout.tsx
2026-01-20 17:31:34 +01:00

28 lines
564 B
TypeScript

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",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="fr">
<body className={poppins.variable}>{children}</body>
</html>
);
}