navbar and map included

added a basic navbar and first map implementation
This commit is contained in:
uwebeschde
2025-02-02 16:28:16 +01:00
parent 29f9cd7941
commit 951714c5c6
14 changed files with 865 additions and 72 deletions

View File

@@ -0,0 +1,22 @@
import type { Metadata } from "next";
import Navbar from "./_components/Navbar";
export const metadata: Metadata = {
title: "VAR Leitstelle v2",
description: "Die neue VAR Leitstelle.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="de" data-theme="light">
<body>
<Navbar />
{children}
</body>
</html>
);
}