// ContactOptions: two-card layout — funnel vs. personal contact const ContactOptions = ({ onCTA }) => (
{/* Variante 1 */}
1 Variante 1

Die 60-Sekunden-Potenzialanalyse

Sparen Sie sich lange Erklärungen. Unser smarter Funnel stellt die richtigen Fragen zu Ihrem Betrieb. Ergebnis: Eine fundierte Einschätzung Ihrer Einsparpotenziale.

{/* Variante 2 */}
2 Variante 2

Persönlicher Austausch

Sie haben ein komplexes Projekt oder möchten direkt mit jemandem von Goma-it sprechen?

); const ContactRow = ({ icon, label, value, href }) => { const inner = (
{label}
{value}
); return href ? {inner} : inner; }; window.ContactOptions = ContactOptions;