Files
2026-06-06 19:55:41 +00:00

23 lines
486 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "EduBox V2",
description: "Plateforme de gestion d'instances pour l'enseignement BTS",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="fr">
<body className={inter.className}>{children}</body>
</html>
);
}