migration wip

This commit is contained in:
2025-12-29 18:18:48 +01:00
parent 292975299d
commit f86785bfb0
182 changed files with 30131 additions and 9321 deletions

View File

@@ -1,7 +1,7 @@
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import '../globals.scss';
import { Navigation } from '@/components/Navigation';
import '../globals.css';
import { Layout } from '@/components/layout/Layout';
import { CookieConsent } from '@/components/CookieConsent';
const inter = Inter({
@@ -38,10 +38,12 @@ export default function LocaleLayout({
}) {
return (
<>
<Navigation siteName="KLZ Cables" locale={locale} />
<main className="min-h-screen">
<Layout
locale={locale}
siteName="KLZ Cables"
>
{children}
</main>
</Layout>
<CookieConsent />
</>
);