import React from 'react'; import { Section, Container } from '../../components/ui'; export default function WhatWeDo() { return (

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}

))}
); }