import ScrollReveal from "./ScrollReveal"; import { Ruler, Wrench, MonitorCheck, Headset } from "lucide-react"; const services = [ { icon: Ruler, phase: "01", title: "Design", description: "Signal flow engineering, system architecture, and equipment specification. Every facility starts with documentation that defines how signals move, how operators interact, and how systems scale.", }, { icon: Wrench, phase: "02", title: "Integrate", description: "Full system builds from rack fabrication and cable infrastructure through to final termination and labeling. Clean builds that technicians can troubleshoot and maintain for years.", }, { icon: MonitorCheck, phase: "03", title: "Commission", description: "End-to-end system testing, calibration, and performance verification. Every signal path tested, every failover validated, every workflow documented before handoff.", }, { icon: Headset, phase: "04", title: "Support", description: "Operator training, documentation packages, and ongoing technical support. Systems designed with the people who use them in mind — not just the engineers who build them.", }, ]; export default function Services() { return (

Process

From blueprint to broadcast.

A complete lifecycle approach to broadcast facility design and systems integration. Every project follows a disciplined process that ensures systems work flawlessly when the red light goes on.

{services.map((service, i) => (
{/* Phase number */} {service.phase}

{service.title}

{service.description}

))}
); }