21 lines
360 B
TypeScript
21 lines
360 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 (
|
|
<>
|
|
<Navbar />
|
|
{children}
|
|
</>
|
|
);
|
|
}
|