import { useTranslations } from 'next-intl'; import { Button, Section, Container } from '@/components/ui'; import Link from 'next/link'; import Image from 'next/image'; export default function HomePage() { const t = useTranslations('Index'); return (
{/* Hero Section */}

We are helping to expand the energy cable networks for a green future

Let's talk
{/* Product Categories Preview */}
{[ { title: 'Low Voltage Cables', desc: 'Powering everyday essentials with reliability and safety.', img: 'https://klz-cables.com/wp-content/uploads/2024/12/low-voltage-scaled.webp', icon: 'https://klz-cables.com/wp-content/uploads/2024/11/Low-Voltage.svg', href: '/products/low-voltage-cables' }, { title: 'Medium Voltage Cables', desc: 'The perfect balance between power and performance for industrial and urban grids.', img: 'https://klz-cables.com/wp-content/uploads/2024/12/medium-voltage-scaled.webp', icon: 'https://klz-cables.com/wp-content/uploads/2024/11/Medium-Voltage.svg', href: '/products/medium-voltage-cables' }, { title: 'High Voltage Cables', desc: 'Delivering maximum power over long distances—without compromise.', img: 'https://klz-cables.com/wp-content/uploads/2025/06/na2xsfl2y-rendered.webp', icon: 'https://klz-cables.com/wp-content/uploads/2024/11/High-Voltage.svg', href: '/products/high-voltage-cables' }, { title: 'Solar Cables', desc: 'Connecting the sun’s energy to your sustainable future.', img: 'https://klz-cables.com/wp-content/uploads/2025/04/3.webp', icon: 'https://klz-cables.com/wp-content/uploads/2024/11/Solar.svg', href: '/products/solar-cables' } ].map((category, idx) => ( {category.title}

{category.title}

{category.desc}

))}
{/* What We Do Section */}

What we do

We ensure that the electricity flows – with quality-tested cables. From low voltage up to high voltage.

{[ { num: '01', title: 'Supply to energy suppliers, wind and solar parks, industry and trade', desc: 'We support your projects from 1 to 220 kV, from simple NYY to high-voltage cables with segment conductors and aluminum sheaths, with a particular focus on medium-voltage cables.' }, { num: '02', title: 'Supply of cables whose quality is certified', desc: 'Cables are products that have to function 100%. For decades, often 80 to 100 years. Our cables are not only approved by VDE. The most well-known energy suppliers trust us.' }, { num: '03', title: 'We deliver on time because we know the consequences for you', desc: 'Wind farm North Germany, coordinates XYZ, delivery Wednesday 2-4 p.m., no unloading option. Yes, we know that. We organize the logistics with a back office team that has up to 20 years of cable experience.' }, { num: '04', title: 'The cable alone is not the solution', desc: 'Stony ground? Perhaps a thicker outer sheath would be better? Damp ground? Can there be transverse watertight protection? We think for you and ask questions.' } ].map((item, idx) => (
{item.num}

{item.title}

{item.desc}

))}
{/* Video Section */}

From a single strand to infinite power – the future starts here.

{/* CTA Section */}

Enough information, let's build something together!

Reach out now
); }