'use client'; import Link from 'next/link'; import Image from 'next/image'; import { motion, AnimatePresence } from 'framer-motion'; import { useState, useEffect } from 'react'; interface HeroVideoProps { data?: { title?: string; subtitle?: string; videoUrl?: string; posterImage?: { url?: string; alt?: string; } | any; ctaLabel?: string; ctaHref?: string; secondaryCtaLabel?: string; secondaryCtaHref?: string; }; } export function HeroVideo({ data }: HeroVideoProps) { const title = data?.title || 'DIE EXPERTEN FÜR KABELTIEFBAU'; const subtitle = data?.subtitle || 'Wir verbinden Infrastruktur mit Präzision. Von Horizontalbohrungen bis zu komplexen Leitungsnetzen.'; const videoUrl = data?.videoUrl || '/assets/dummy-hero.mp4'; const posterSrc = data?.posterImage?.url || "/assets/photos/DJI_0048.JPG"; const posterAlt = data?.posterImage?.alt || "E-TIB Gruppe Baustelle"; const ctaLabel = data?.ctaLabel || 'Unternehmen entdecken'; const ctaHref = data?.ctaHref || '#unternehmen'; const secondaryCtaLabel = data?.secondaryCtaLabel || 'Projekt anfragen'; const secondaryCtaHref = data?.secondaryCtaHref || '/kontakt'; return (
{subtitle}