20 lines
371 B
TypeScript
20 lines
371 B
TypeScript
import type { Metadata } from 'next';
|
|
import { Metadata as NextMetadata } from 'next';
|
|
|
|
export const metadata: NextMetadata = {
|
|
manifest: '/manifest.json',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="de">
|
|
<body className="antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|