42 lines
869 B
TypeScript
42 lines
869 B
TypeScript
import type { Metadata } from 'next';
|
|
import { Inter } from 'next/font/google';
|
|
import './globals.css';
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin', 'latin-ext'],
|
|
display: 'swap',
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'KLZ Cables',
|
|
description: 'Professional cable solutions for industrial applications',
|
|
metadataBase: new URL('https://klz-cables.com'),
|
|
alternates: {
|
|
canonical: '/',
|
|
languages: {
|
|
'en': '/en',
|
|
'de': '/de',
|
|
},
|
|
},
|
|
openGraph: {
|
|
title: 'KLZ Cables',
|
|
description: 'Professional cable solutions for industrial applications',
|
|
type: 'website',
|
|
locale: 'en',
|
|
siteName: 'KLZ Cables',
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html>
|
|
<body className={inter.className}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
} |