diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 84d4e2a..988b1b8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,3 +1,6 @@ +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + export const metadata = { title: "About BroadcastBeat", description: "BroadcastBeat is an independent industry publication covering broadcast, production, and post-production technology.", @@ -5,29 +8,33 @@ export const metadata = { export default function AboutPage() { return ( -
-

About BroadcastBeat

-
-

- BroadcastBeat is an independent trade publication covering broadcast, - live production, streaming, and post-production technology. We - report on the equipment, services, and people that move the - professional video industry forward. -

-

- We cover the major industry shows — NAB, IBC, BroadcastAsia, MPTS, - and others — track product launches and acquisitions, 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 staff or AI assistants according to our editorial style - guide; the original submission is preserved on file. -

-
-
+
+
+
+

About BroadcastBeat

+
+

+ BroadcastBeat is an independent trade publication covering broadcast, + live production, streaming, and post-production technology. We + report on the equipment, services, and people that move the + professional video industry forward. +

+

+ We cover the major industry shows — NAB, IBC, BroadcastAsia, MPTS, + and others — track product launches and acquisitions, 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 staff or AI assistants according to our editorial style + guide; the original submission is preserved on file. +

+
+
+
); } diff --git a/src/app/about/press-kit/page.tsx b/src/app/about/press-kit/page.tsx index 8d480f2..5d46504 100644 --- a/src/app/about/press-kit/page.tsx +++ b/src/app/about/press-kit/page.tsx @@ -1,33 +1,40 @@ +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + export const metadata = { title: "Press kit — BroadcastBeat" }; export default function PressKitPage() { return ( -
-

Press kit

-
-
-

Logos

- -
-
-

Boilerplate

-

- BroadcastBeat is an independent trade publication covering broadcast, - live production, streaming, and post-production technology. Founded - to bring engineering-rigor reporting to industry coverage, BroadcastBeat - publishes daily on the equipment, services, and people that move - professional video forward. -

-
-
-

Media contact

-

- ryan.salazar@relevantmediaproperties.com -

-
-
-
+
+
+
+

Press kit

+
+
+

Logos

+ +
+
+

Boilerplate

+

+ BroadcastBeat is an independent trade publication covering broadcast, + live production, streaming, and post-production technology. Founded + to bring engineering-rigor reporting to industry coverage, BroadcastBeat + publishes daily on the equipment, services, and people that move + professional video forward. +

+
+
+

Media contact

+

+ ryan.salazar@relevantmediaproperties.com +

+
+
+
+
); } diff --git a/src/app/about/team/page.tsx b/src/app/about/team/page.tsx index 9732a47..05825e9 100644 --- a/src/app/about/team/page.tsx +++ b/src/app/about/team/page.tsx @@ -1,4 +1,6 @@ import { createClient } from "@supabase/supabase-js"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; export const dynamic = "force-dynamic"; export const revalidate = 600; @@ -32,36 +34,40 @@ export default async function TeamPage() { const team = (data || []) as Persona[]; return ( -
-

Editorial team

-

- Staff journalists by beat. We are a mix of human reporters and trained - AI personas operating under house style. -

- -
+
+

{p.name}

+ {p.beat && ( +
+ {p.beat.replace(/-/g, " ")} +
+ )} + {p.bio &&

{p.bio}

} +
+ + ))} + + +