initial commit

initial commit, daisyui beta, tailwind newest
This commit is contained in:
uwebeschde
2025-02-01 13:17:36 +01:00
parent 90cec2c204
commit 7644135142
8 changed files with 75 additions and 151 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
import Navbar from "./_components/Navbar";
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
@@ -12,8 +13,8 @@ const geistMono = localFont({
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "VAR Leitstelle v2",
description: "Die neue VAR Leitstelle.",
};
export default function RootLayout({
@@ -22,8 +23,9 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="de" data-theme="light">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
<Navbar />
{children}
</body>
</html>