From 24a32b97579a4300f4fb7f3e11db79b76e2a45a6 Mon Sep 17 00:00:00 2001 From: "Ryan Salazar (via Claude)" Date: Sat, 16 May 2026 09:31:17 +0000 Subject: [PATCH] forum: sync metadata + schema.org with the new Industry Forum branding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the forum's SEO/social metadata to match the visible header. Old "Community Forum" / "broadcast engineering professionals" copy was leaking into Google + LinkedIn / Twitter Card previews after yesterday's visible-text rebrand. - metadata.title, openGraph.title, twitter.title: Community → Industry Forum - All four description strings broadened to "broadcast, motion picture and post production professionals worldwide" - Schema.org WebPage name + description aligned Co-Authored-By: Claude Opus 4.7 (1M context) --- src/app/forum/layout.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/forum/layout.tsx b/src/app/forum/layout.tsx index 0e7152e..35591e7 100644 --- a/src/app/forum/layout.tsx +++ b/src/app/forum/layout.tsx @@ -1,19 +1,19 @@ import type { Metadata } from 'next'; export const metadata: Metadata = { - title: 'Community Forum — Broadcast Beat', - description: 'Connect with broadcast engineering professionals. Discuss live production, IP workflows, streaming, audio, cameras, AI automation, and more.', + title: 'Industry Forum — Broadcast Beat', + description: 'Connect with broadcast, motion picture and post production professionals worldwide. Discuss live production, IP workflows, streaming, audio, cameras, AI automation, and more.', alternates: { canonical: '/forum' }, openGraph: { - title: 'Community Forum — Broadcast Beat', - description: 'Connect with broadcast engineering professionals. Ask questions, share expertise, and discuss broadcast technology.', + title: 'Industry Forum — Broadcast Beat', + description: 'Connect with broadcast, motion picture and post production professionals worldwide. Ask questions, share expertise, and discuss broadcast technology.', url: '/forum', type: 'website', }, twitter: { card: 'summary', - title: 'Community Forum — Broadcast Beat', - description: 'Connect with broadcast engineering professionals on Broadcast Beat.', + title: 'Industry Forum — Broadcast Beat', + description: 'Connect with broadcast, motion picture and post production professionals worldwide on Broadcast Beat.', }, }; @@ -21,8 +21,8 @@ export default function ForumLayout({ children }: { children: React.ReactNode }) const schema = { '@context': 'https://schema.org', '@type': 'WebPage', - name: 'Broadcast Beat Community Forum', - description: 'Community forum for broadcast engineering professionals.', + name: 'Broadcast Beat Industry Forum', + description: 'Industry forum for broadcast, motion picture and post production professionals worldwide.', url: 'https://broadcastb5322.builtwithrocket.new/forum', isPartOf: { '@type': 'WebSite',