22 lines
406 B
TypeScript
22 lines
406 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import './globals.css';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'ERP Nutzfahrzeuge',
|
||
|
|
description: 'ERP system for commercial vehicle management',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function RootLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<html lang="de">
|
||
|
|
<body>
|
||
|
|
<div id="app-root">{children}</div>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|