Cleaned up template

This commit is contained in:
2025-06-25 19:17:39 +02:00
parent 0e2ab04ab2
commit a9a4332f5e
16 changed files with 117 additions and 228 deletions

View File

@@ -1,34 +1,18 @@
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"],
});
import type { Metadata } from "next"
import { ReactNode } from "react"
import "./globals.css"
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
title: "Create Next App",
description: "Generated by create next app"
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
children
}: Readonly<{ children: ReactNode }>) {
return (
<html lang="en" suppressHydrationWarning>
<body className="antialiased">{children}</body>
</html>
)
}