feat: first commit

This commit is contained in:
2026-07-08 18:09:09 +02:00
parent a7cd7739ca
commit 82abc317f1
16 changed files with 1582 additions and 69 deletions
+23 -5
View File
@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Fredoka, Geist, Geist_Mono, Press_Start_2P, VT323 } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
@@ -12,9 +12,26 @@ const geistMono = Geist_Mono({
subsets: ["latin"],
});
const fredoka = Fredoka({
variable: "--font-fredoka",
subsets: ["latin"],
});
const pressStart = Press_Start_2P({
variable: "--font-pixel",
subsets: ["latin"],
weight: "400",
});
const vt323 = VT323({
variable: "--font-retro",
subsets: ["latin"],
weight: "400",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Le serveur de Leon",
description: "Streaming, Minecraft et services privés de Leon.",
};
export default function RootLayout({
@@ -24,8 +41,9 @@ export default function RootLayout({
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
lang="fr"
data-scroll-behavior="smooth"
className={`${geistSans.variable} ${geistMono.variable} ${fredoka.variable} ${pressStart.variable} ${vt323.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
</html>