Initial commit

This commit is contained in:
2026-08-22 17:29:31 +00:00
commit 080c4d0f39
14 changed files with 7128 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import { type ReactNode } from 'react';
import { type Metadata } from 'next';
import '@/app/globals.css';
type Props = Readonly<{
children: ReactNode;
}>;
export const metadata: Metadata = {
title: {
default: '<Title>',
template: '%s | <Template>'
},
description: '<Description>',
keywords: [ '<Keyword>' ],
alternates: {
canonical: 'https://<domain>'
}
};
export default function RootLayout({ children }: Props) {
return (
<html lang="de" >
<body>
{children}
</body>
</html>
);
}