'use client'; import { motion } from 'framer-motion'; interface HDDBoreAnimationProps { className?: string; invert?: boolean; } /** * HDDBoreAnimation * * Visualizes Horizontal Directional Drilling (Spülbohren). * 1. A segmented drill rod (Gestänge) pushes through a subterranean arc (Pilotbohrung). * 2. It pulls back a thick, solid orange pipe (Rohreinzug). * * This directly ties to E-TIB's core services, visually representing the * physical act of laying a conduit pipe under an obstacle. */ export function HDDBoreAnimation({ className = '', invert = false }: HDDBoreAnimationProps) { // Track color const color = invert ? '#0a3d28' : '#0e7a5c'; // Bright orange for the conduit pipe (Kabelschutzrohr) const pipeColor = '#ff6b00'; // Parabolic path under an implied obstacle const pathD = "M 50 100 C 300 100 400 250 600 250 C 800 250 900 100 1150 100"; // Length of this cubic bezier is approx 1300 const pathLen = 1300; return ( ); }