2026-01-20 17:20:13 +01:00
|
|
|
import type { Metadata } from "next";
|
2026-01-20 17:31:34 +01:00
|
|
|
import { Poppins } from "next/font/google";
|
2026-01-20 17:20:13 +01:00
|
|
|
import "./globals.css";
|
|
|
|
|
|
2026-01-20 17:31:34 +01:00
|
|
|
const poppins = Poppins({
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
display: "swap",
|
|
|
|
|
variable: "--font-poppins",
|
|
|
|
|
});
|
|
|
|
|
|
2026-01-20 17:20:13 +01:00
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Platform SaaS",
|
|
|
|
|
description: "Plateforme SaaS",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="fr">
|
2026-01-20 17:31:34 +01:00
|
|
|
<body className={poppins.variable}>{children}</body>
|
2026-01-20 17:20:13 +01:00
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|