import ScrollReveal from "./ScrollReveal"; const categories = [ { name: "Routing & Switching", items: ["Ross Ultrix", "Blackmagic ATEM", "Evertz EQX", "Grass Valley Kahuna", "Panasonic Kairos"], }, { name: "All In One Production", items: ["vMix", "Vizrt", "AMPP"], }, { name: "Signal Transport", items: ["SMPTE 2110", "NDI", "SRT", "SDI", "Dante", "MADI", "JPEG XS"], }, { name: "Infrastructure", items: ["IP Networking", "Fiber Infrastructure", "KVM Systems", "UPS & Power", "Cooling & Ventilation"], }, { name: "Display & XR", items: ["LED Processing", "Unreal Engine", "Camera Tracking", "Projection", "Color Management"], }, ]; export default function TechStack() { return (

Technology

Tools of the trade.

Deep experience across the full broadcast technology stack, from traditional SDI infrastructure to modern IP and cloud-native production platforms.

{categories.map((cat, i) => (

{cat.name}

{cat.items.map((item) => ( {item} ))}
))}
); }