import React from 'react'; import Link from 'next/link'; interface PowerCTAProps { locale: string; } export default function PowerCTA({ locale }: PowerCTAProps) { const isDe = locale === 'de'; return (
{/* Industrial background pattern */}
{/* Decorative accent */}
{isDe ? 'Lösungen' : 'Solutions'}

{isDe ? 'Bereit für die' : 'Ready for the'} {isDe ? 'Energiewende?' : 'Energy Transition?'}

{isDe ? 'Von der Planung von Wind- und Solarparks bis zur Lieferung hochwertiger Energiekabel erwecken wir Ihre Projekte zum Leben.' : 'From wind and solar park planning to delivering high-quality energy cables, we bring your projects to life.' }

{[ isDe ? 'Strategischer Hub für schnelle Lieferung' : 'Strategic hub for fast delivery', isDe ? 'Nachhaltige Kabelinfrastruktur' : 'Sustainable cable infrastructure', isDe ? 'Expertenberatung für Großprojekte' : 'Expert consulting for large-scale projects', isDe ? 'Zertifizierte Qualität nach EU-Standards' : 'Certified quality according to EU standards' ].map((item, i) => (
{item}
))}
{isDe ? 'Projekt anfragen' : 'Inquire Project'}

{isDe ? 'Kostenlose Erstberatung für Ihr Vorhaben.' : 'Free initial consultation for your project.'}

); }