migration wip

This commit is contained in:
2025-12-30 12:10:13 +01:00
parent 89dbf8af87
commit 65a7e9f24a
203 changed files with 192475 additions and 1562 deletions

View File

@@ -25,6 +25,10 @@ export const metadata: Metadata = {
locale: 'en',
siteName: 'KLZ Cables',
},
icons: {
icon: '/favicon.ico',
apple: '/apple-touch-icon.png',
},
};
export default function RootLayout({
@@ -34,6 +38,10 @@ export default function RootLayout({
}) {
return (
<html>
<head>
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</head>
<body className={inter.className}>
{children}
</body>