Files
Webklar.com/app/layout.tsx
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

29 lines
713 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}