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

@@ -105,13 +105,13 @@ export async function generateMetadata({
const { slug } = await params;
const result = await loadManufacturer(slug);
if (!result) {
return { title: "Manufacturer not found — Broadcast Beat" };
return { title: "Manufacturer not found — AV Beat" };
}
const { company } = result;
const title = `${company.company_name} — Manufacturer Profile | Broadcast Beat`;
const title = `${company.company_name} — Manufacturer Profile | AV Beat`;
const description =
(company.bio || "").slice(0, 200) ||
`${company.company_name} is a broadcast industry manufacturer covered by Broadcast Beat.`;
`${company.company_name} is a broadcast industry manufacturer covered by AV Beat.`;
return {
title,
description,
@@ -119,7 +119,7 @@ export async function generateMetadata({
openGraph: {
title,
description,
url: `https://broadcastbeat.com/manufacturers/${slug}`,
url: `https://avbeat.com/manufacturers/${slug}`,
type: "profile",
...(company.logo_url ? { images: [{ url: company.logo_url }] } : {}),
},
@@ -206,7 +206,7 @@ export default async function ManufacturerProfile({
</span>
)}
{company.phone && (
<a href={`tel:${company.phone.replace(/[^\d+]/g, '')}`} className="text-[#888] hover:text-[#3b82f6]">
<a href={`tel:${company.phone.replace(/[^\d+]/g, '')}`} className="text-[#888] hover:text-[#E67E22]">
{company.phone}
</a>
)}
@@ -217,7 +217,7 @@ export default async function ManufacturerProfile({
href={company.company_website}
target="_blank"
rel="noopener noreferrer"
className="text-[#3b82f6] hover:underline"
className="text-[#E67E22] hover:underline"
>
Website
</a>
@@ -227,7 +227,7 @@ export default async function ManufacturerProfile({
href={company.press_url}
target="_blank"
rel="noopener noreferrer"
className="text-[#3b82f6] hover:underline"
className="text-[#E67E22] hover:underline"
>
Newsroom
</a>
@@ -237,7 +237,7 @@ export default async function ManufacturerProfile({
href={company.contact_url}
target="_blank"
rel="noopener noreferrer"
className="text-[#3b82f6] hover:underline"
className="text-[#E67E22] hover:underline"
>
Contact
</a>
@@ -247,7 +247,7 @@ export default async function ManufacturerProfile({
href={company.linkedin_url}
target="_blank"
rel="noopener noreferrer"
className="text-[#888] hover:text-[#3b82f6]"
className="text-[#888] hover:text-[#E67E22]"
>
LinkedIn
</a>
@@ -257,7 +257,7 @@ export default async function ManufacturerProfile({
href={`https://twitter.com/${company.twitter_handle}`}
target="_blank"
rel="noopener noreferrer"
className="text-[#888] hover:text-[#3b82f6]"
className="text-[#888] hover:text-[#E67E22]"
>
X / Twitter
</a>
@@ -306,7 +306,7 @@ export default async function ManufacturerProfile({
href={e.linkedin_url}
target="_blank"
rel="noopener noreferrer"
className="text-[11px] text-[#3b82f6] hover:underline"
className="text-[11px] text-[#E67E22] hover:underline"
>
LinkedIn
</a>
@@ -328,14 +328,14 @@ export default async function ManufacturerProfile({
)}
{company.phone && (
<div className="mt-1">
<a href={`tel:${company.phone.replace(/[^\d+]/g, '')}`} className="text-[#3b82f6] hover:underline">
<a href={`tel:${company.phone.replace(/[^\d+]/g, '')}`} className="text-[#E67E22] hover:underline">
{company.phone}
</a>
</div>
)}
{company.contact_email && (
<div>
<a href={`mailto:${company.contact_email}`} className="text-[#3b82f6] hover:underline">
<a href={`mailto:${company.contact_email}`} className="text-[#E67E22] hover:underline">
{company.contact_email}
</a>
</div>
@@ -401,7 +401,7 @@ export default async function ManufacturerProfile({
<section className="mb-10">
<header className="flex items-baseline justify-between mb-3">
<h2 className="text-lg font-display font-bold text-[#e0e0e0]">Recent coverage</h2>
<Link href={`/news?search=${encodeURIComponent(company.company_name)}`} className="text-xs text-[#3b82f6] hover:underline">
<Link href={`/news?search=${encodeURIComponent(company.company_name)}`} className="text-xs text-[#E67E22] hover:underline">
All stories
</Link>
</header>
@@ -410,7 +410,7 @@ export default async function ManufacturerProfile({
<Link
key={r.wp_slug}
href={`/news/${r.wp_slug}`}
className="group bg-[#0d0d0d] border border-[#252525] rounded-md p-3 hover:border-[#3b82f6] hover:shadow-sm transition-all flex gap-3"
className="group bg-[#0d0d0d] border border-[#252525] rounded-md p-3 hover:border-[#E67E22] hover:shadow-sm transition-all flex gap-3"
>
{/* Image fallback cascade — Ryan rule: never show an empty
gray box on a coverage card. Falls through:
@@ -423,7 +423,7 @@ export default async function ManufacturerProfile({
loading="lazy"
/>
<div className="min-w-0">
<h3 className="text-xs font-semibold text-[#e0e0e0] leading-snug group-hover:text-[#3b82f6] line-clamp-3">
<h3 className="text-xs font-semibold text-[#e0e0e0] leading-snug group-hover:text-[#E67E22] line-clamp-3">
{r.title}
</h3>
{r.wp_published_at && (
@@ -447,7 +447,7 @@ export default async function ManufacturerProfile({
{p.slug ? (
<Link
href={`/news/${p.slug}`}
className="text-[#3b82f6] hover:underline"
className="text-[#E67E22] hover:underline"
>
{p.title}
</Link>
@@ -466,7 +466,7 @@ export default async function ManufacturerProfile({
)}
<footer className="text-xs text-[#666] mt-12 pt-6 border-t border-[#252525]">
Listing maintained by Broadcast Beat editorial.
Listing maintained by AV Beat editorial.
{company.last_mentioned && (
<> Last mentioned in coverage on {new Date(company.last_mentioned).toISOString().slice(0, 10)}.</>
)}