import Header from "@/components/Header"; import Footer from "@/components/Footer"; import SidebarAdStack from "@/components/SidebarAdStack"; export const metadata = { title: "About AV Beat", description: "AV Beat is an independent industry publication covering pro AV, live production, and display tech.", }; export default function AboutPage() { return (
AV Beat

About

An independent trade publication covering pro AV, live production, display tech, and signal-flow technology.

AV Beat reports on the equipment, services, and people that move the professional video industry forward. We follow product launches, executive moves, acquisitions, and the live production / IP / cloud workflows reshaping how content gets made and delivered. We cover the major industry shows in person and remotely — NAB Show — InfoComm, ISE, NAB Show, IBC, and more — track product launches and acquisitions year-round, and publish interviews with the engineers, post supervisors, and executives building the next generation of workflows. Editorial decisions are made independently of advertising. We do not accept payment for editorial coverage. Vendor-supplied press releases routed through our distribution platform are rewritten by our editorial team to our house style guide; the original submission is preserved on file for provenance. For editorial pitches: editor@avbeat.com. {" "}For advertising: see the media kit. {" "}For our team: meet the editorial team.
{/* Sidebar: 300x600 + rotating 300x250s */}
); } function Stat({ label, value }: { label: string; value: string }) { // Brand-gradient top accent (animated sheen) gives the stat tile its // on-brand identity without redoing the layout. The tile itself stays // white-on-light-border for legibility. return (
{value}
{label}
); } function Block({ title, children }: { title: string; children: React.ReactNode }) { return (

{title}

{children}

); }