Brand cleanup: swap remaining user-facing BB strings + accent blue → AV orange

Hit pages we didn't get the first pass: rss, gear, show-coverage,
articles/[slug], contributor, manufacturers, login, client-login, terms,
dashboard/show-calendar, and team-page derive helpers (domain + comment).
This commit is contained in:
Ryan Salazar
2026-06-01 15:39:09 +00:00
parent c9b85b79b7
commit dd93a74bdf
14 changed files with 97 additions and 97 deletions

View File

@@ -8,8 +8,8 @@ export const dynamic = "force-dynamic";
export const revalidate = 600;
export const metadata = {
title: "Our team — Broadcast Beat",
description: "Meet the Broadcast Beat team — editorial staff plus accounts and support, covering broadcast, streaming, and post-production.",
title: "Our team — AV Beat",
description: "Meet the AV Beat team — editorial staff plus accounts and support, covering the convergence of pro AV and IT.",
};
interface Persona {
@@ -77,11 +77,11 @@ export default async function TeamPage() {
.map((w) => w.charAt(0).toUpperCase())
.join("");
// Derive @broadcastbeat.com email from the persona slug. Real mailboxes
// Derive @avbeat.com email from the persona slug. Real mailboxes
// are set up centrally; this is the authoring address surfaced to readers.
const editorialEmail = (p: Persona): { user: string; domain: string } | null => {
if (!p.slug) return null;
return { user: p.slug.replace(/-/g, "."), domain: "broadcastbeat.com" };
return { user: p.slug.replace(/-/g, "."), domain: "avbeat.com" };
};
const splitEmail = (email: string): { user: string; domain: string } | null => {