Replace 'BroadcastBeat' with 'Broadcast Beat' in all user-visible text (133 occurrences across 40+ files)

This commit is contained in:
broadcastbeat-rename
2026-05-16 00:32:13 +00:00
parent 959e3980ae
commit 0db3ea34e3
52 changed files with 133 additions and 133 deletions

View File

@@ -260,7 +260,7 @@ export default function NewsPage({ articles }: { articles: Article[] }) {
<div className="flex-shrink-0 w-[160px] h-[105px] relative overflow-hidden rounded-sm">
<AppImage
src={article.image || "/assets/images/article-placeholder.jpg"}
alt={article.alt || article.title || "BroadcastBeat article"}
alt={article.alt || article.title || "Broadcast Beat article"}
fill
className="object-cover group-hover:scale-105 transition-transform duration-300"
sizes="160px"

View File

@@ -51,7 +51,7 @@ export async function generateMetadata({ params }: PageProps): Promise<Metadata>
return { title: "Article Not Found", description: "The article you are looking for does not exist." };
}
return {
title: `${article.title} — BroadcastBeat`,
title: `${article.title} — Broadcast Beat`,
description: article.excerpt,
alternates: { canonical: `/news/${article.slug}` },
openGraph: {
@@ -69,7 +69,7 @@ export async function generateMetadata({ params }: PageProps): Promise<Metadata>
title: article.title,
description: article.excerpt,
images: [article.image],
creator: "@BroadcastBeat",
creator: "@Broadcast Beat",
},
};
}
@@ -98,7 +98,7 @@ export default async function NewsArticlePage({ params }: PageProps) {
author: { "@type": "Person", name: article.author },
publisher: {
"@type": "Organization",
name: "BroadcastBeat",
name: "Broadcast Beat",
logo: { "@type": "ImageObject", url: `${SITE_URL}/assets/images/logo.png` },
},
datePublished: toIso(article.date),

View File

@@ -6,7 +6,7 @@ import { getLegacyArticlesBySection } from "@/lib/articles/legacy-source";
export const revalidate = 1800;
export const metadata: Metadata = {
title: "Latest Broadcast News — BroadcastBeat",
title: "Latest Broadcast News — Broadcast Beat",
description:
"Breaking news and industry updates from the world of broadcast engineering, IP/cloud workflows, streaming, AI, and live production.",
alternates: { canonical: "/news" },