main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

28
app/layout.tsx Normal file
View File

@@ -0,0 +1,28 @@
import './globals.css';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'Webklar Klarheit im Webdesign',
description: 'Wir gestalten moderne, schnelle Websites für Ihr Business.',
openGraph: {
title: 'Webklar Klarheit im Webdesign',
description: 'Wir gestalten moderne, schnelle Websites für Ihr Business.',
url: 'https://webklar.com',
type: 'website',
},
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="de">
<body className={inter.className}>{children}</body>
</html>
);
}