29 lines
713 B
TypeScript
29 lines
713 B
TypeScript
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>
|
||
);
|
||
}
|