36 lines
813 B
TypeScript
36 lines
813 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, JetBrains_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const mono = JetBrains_Mono({
|
|
variable: "--font-mono",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Data_analysis",
|
|
description: "Modern Statistical Tool",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="fr">
|
|
<head>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/katex.min.css" />
|
|
</head>
|
|
<body className={`${inter.variable} ${mono.variable} font-sans antialiased bg-slate-50 text-slate-900`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|