58 lines
2.7 KiB
TypeScript
58 lines
2.7 KiB
TypeScript
import React from 'react';
|
|
import Link from 'next/link';
|
|
|
|
interface PowerCTAProps {
|
|
locale: string;
|
|
}
|
|
|
|
export default function PowerCTA({ locale }: PowerCTAProps) {
|
|
const isDe = locale === 'de';
|
|
|
|
return (
|
|
<div className="my-12 p-8 md:p-10 bg-white rounded-xl shadow-lg border border-neutral-100 relative overflow-hidden">
|
|
{/* Decorative background element */}
|
|
<div className="absolute top-0 right-0 w-32 h-32 bg-primary/5 rounded-bl-full -mr-10 -mt-10" />
|
|
|
|
<div className="relative z-10">
|
|
<h3 className="text-2xl font-bold text-text-primary mb-4 flex items-center gap-3">
|
|
<span className="text-3xl">💡</span>
|
|
{isDe ? 'Benötigen Sie Strom?' : 'Need power?'}
|
|
<span className="text-primary">{isDe ? 'Wir sind für Sie da!' : "We've got you covered!"}</span>
|
|
</h3>
|
|
|
|
<p className="text-lg text-text-secondary mb-6 leading-relaxed">
|
|
{isDe
|
|
? 'Von der Planung von Wind- und Solarparks bis zur Lieferung hochwertiger Energiekabel wie NA2XS(F)2Y, NAYY und NA2XY erwecken wir Energienetze zum Leben.'
|
|
: 'From wind and solar park planning to delivering high-quality energy cables like NA2XS(F)2Y, NAYY, and NA2XY, we bring energy networks to life.'
|
|
}
|
|
</p>
|
|
|
|
<ul className="space-y-2 mb-8">
|
|
{[
|
|
isDe ? 'Schnelle Lieferung dank unseres strategischen Hubs.' : 'Fast delivery thanks to our strategic hub.',
|
|
isDe ? 'Nachhaltige Lösungen für eine grünere Zukunft.' : 'Sustainable solutions for a greener tomorrow.',
|
|
isDe ? 'Vertraut von Branchenführern in Deutschland, Österreich und den Niederlanden.' : 'Trusted by industry leaders in Germany, Austria and the Netherlands.'
|
|
].map((item, i) => (
|
|
<li key={i} className="flex items-start gap-2 text-text-secondary">
|
|
<span className="text-green-500 mt-1">✅</span>
|
|
<span>{item}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
|
|
<div className="flex flex-col sm:flex-row gap-4 items-start sm:items-center">
|
|
<p className="font-medium text-text-primary">
|
|
{isDe ? 'Lassen Sie uns gemeinsam eine grünere Zukunft gestalten.' : "Let's power a greener future together."}
|
|
</p>
|
|
<Link
|
|
href={`/${locale}/contact`}
|
|
className="inline-flex items-center gap-2 px-6 py-3 bg-primary text-white font-bold rounded-lg hover:bg-primary/90 transition-all shadow-md hover:shadow-lg transform hover:-translate-y-0.5"
|
|
>
|
|
{isDe ? '👉 Kontakt aufnehmen' : '👉 Get in touch'}
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|