21 lines
394 B
TypeScript
21 lines
394 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
import "./globals.css";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Fahrrad Verschleißteile Tracker",
|
||
|
|
description: "Verwaltung von Verschleißteilen an Fahrrädern",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function RootLayout({
|
||
|
|
children,
|
||
|
|
}: Readonly<{
|
||
|
|
children: React.ReactNode;
|
||
|
|
}>) {
|
||
|
|
return (
|
||
|
|
<html lang="de">
|
||
|
|
<body>{children}</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|