Files
var-monorepo/apps/dispatch/app/(dispatch)/layout.tsx
uwebeschde 951714c5c6 navbar and map included
added a basic navbar and first map implementation
2025-02-02 16:28:16 +01:00

23 lines
428 B
TypeScript

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>
);
}