import { Radio, Tv, Cloud, Cable } from "lucide-react"; import ScrollReveal from "./ScrollReveal"; const capabilities = [ { icon: Radio, title: "Systems Design", description: "End-to-end broadcast facility design including signal flow engineering, equipment specification, and architectural documentation.", }, { icon: Cable, title: "Integration", description: "Full system integration from rack builds and wiring to commissioning, testing, and operator training.", }, { icon: Cloud, title: "Cloud & IP", description: "Cloud-native production architectures, SMPTE ST 2110, NDI, SRT, and hybrid on-prem/cloud workflows.", }, { icon: Tv, title: "Broadcast Engineering", description: "Live production engineering, RF systems, video routing, and real-time broadcast operations.", }, ]; export default function About() { return (
{/* Section header */}

About

From live production to
systems architecture.

I'm a broadcast engineer and systems integrator based in the Washington DC area, with a career that spans both sides of the industry—production and infrastructure.

My background in live production as a 1st AC, DIT, Camera Operator, and Trinity Operator gives me an operator's perspective that most systems designers don't have. I build facilities that work the way production teams actually need them to—not just the way engineers imagine they will.

Today, my focus is broadcast systems integration. As a principal systems designer with{" "} Broadcast Management Group , I design production facilities for organizations including the{" "} Washington Commanders,{" "} CVS/Aetna,{" "} UBS,{" "} BetMGM,{" "} Intuit, and{" "} Monumental Sports—engineering control rooms, studios, XR stages, and IP-based workflows across sports, corporate, financial services, aerospace, and defense.

{/* Capabilities grid */}
{capabilities.map((cap, i) => (

{cap.title}

{cap.description}

))}
); }