first commit still needs bug testing or something

This commit is contained in:
2026-01-21 02:14:07 -05:00
parent f6763d7500
commit f5adcc68b2
33 changed files with 11106 additions and 0 deletions

34
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,34 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "DP2 Moderation Assistant",
description: "Calculate punishments based on DP2 guidelines",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased dark`}
>
{children}
</body>
</html>
);
}