json schema

This commit is contained in:
2026-01-23 12:07:11 +01:00
parent dd5636450c
commit 84438f1492
6 changed files with 37 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
import Hero from '@/components/home/Hero';
import JsonLd from '@/components/JsonLd';
import ProductCategories from '@/components/home/ProductCategories';
import WhatWeDo from '@/components/home/WhatWeDo';
import RecentPosts from '@/components/home/RecentPosts';
@@ -13,6 +14,21 @@ import Reveal from '@/components/Reveal';
export default function HomePage({ params: { locale } }: { params: { locale: string } }) {
return (
<div className="flex flex-col min-h-screen">
<JsonLd
id="breadcrumb-home"
data={{
'@context': 'https://schema.org',
'@type': 'BreadcrumbList',
itemListElement: [
{
'@type': 'ListItem',
position: 1,
name: 'Home',
item: `https://klz-cables.com/${locale}`,
},
],
}}
/>
<Hero />
<Reveal><ProductCategories /></Reveal>
<Reveal><WhatWeDo /></Reveal>