)}
{m.featured && (
diff --git a/src/app/manufacturers/[slug]/page.tsx b/src/app/manufacturers/[slug]/page.tsx
index 4d0c542..285b9b8 100644
--- a/src/app/manufacturers/[slug]/page.tsx
+++ b/src/app/manufacturers/[slug]/page.tsx
@@ -9,6 +9,36 @@ export const revalidate = 1800;
type Params = { slug: string };
+// Known show date ranges. Booth numbers only render when the show is
+// upcoming within 90 days; otherwise the row is shown without a booth.
+const SHOW_DATES: Record
= {
+ "NAB Show:2026": { start: "2026-04-11", end: "2026-04-16" },
+ "NAB Show NY:2026": { start: "2026-10-21", end: "2026-10-23" },
+ "IBC:2026": { start: "2026-09-11", end: "2026-09-14" },
+ "NAB Show:2027": { start: "2027-04-17", end: "2027-04-22" },
+};
+
+function normaliseShowName(raw: string | null | undefined): string {
+ const s = (raw || "").trim();
+ if (!s) return s;
+ if (/^nab(\s*show)?$/i.test(s)) return "NAB Show";
+ if (/^nab\s*(show\s*)?(ny|new\s*york)$/i.test(s)) return "NAB Show NY";
+ if (/^ibc(\s*show)?$/i.test(s)) return "IBC";
+ return s;
+}
+
+function shouldShowBooth(show: string, year: number | null): boolean {
+ if (!year) return false;
+ const dates = SHOW_DATES[`${show}:${year}`];
+ if (!dates) return false;
+ const today = new Date();
+ const start = new Date(dates.start + "T00:00:00Z");
+ const end = new Date(dates.end + "T23:59:59Z");
+ if (today > end) return false;
+ const daysUntilStart = (start.getTime() - today.getTime()) / 86_400_000;
+ return daysUntilStart <= 90;
+}
+
async function loadManufacturer(slug: string) {
const supabase = await createClient();
const { data } = await supabase
@@ -163,12 +193,12 @@ export default async function ManufacturerProfile({
{company.exhibits_nab && (
- NAB Show 2026
+ 2026 NAB Show
)}
{company.exhibits_ibc && (
- IBC
+ IBC 2026
)}
{(company.hq_city || company.hq_country) && (
@@ -315,21 +345,27 @@ export default async function ManufacturerProfile({
)}
- {company.categories && company.categories.length > 0 && (
-
- Categories
-
- {company.categories.map((c: string) => (
-
- {c}
-
- ))}
-
-
- )}
+ {(() => {
+ const cleanCategories = (company.categories || []).filter(
+ (c: string) => typeof c === "string" && c.trim().length >= 2
+ );
+ if (cleanCategories.length === 0) return null;
+ return (
+
+ Categories
+
+ {cleanCategories.map((c: string) => (
+
+ {c}
+
+ ))}
+
+
+ );
+ })()}
{shows.length > 0 && (
@@ -337,21 +373,27 @@ export default async function ManufacturerProfile({
Trade-show appearances
)}
diff --git a/src/app/nab-2026/page.tsx b/src/app/nab-2026/page.tsx
index 47a8543..58854ee 100644
--- a/src/app/nab-2026/page.tsx
+++ b/src/app/nab-2026/page.tsx
@@ -9,14 +9,14 @@ import CompanyMentionsHover from "@/components/CompanyMentionsHover";
export const revalidate = 600;
export const metadata: Metadata = {
- title: "NAB Show 2026 — Live Coverage Hub | Broadcast Beat",
+ title: "2026 NAB Show — Live Coverage Hub | Broadcast Beat",
description:
- "Broadcast Beat's live coverage of NAB Show 2026: 1,100+ exhibitors, the latest product launches, booth-by-booth news, and editorial pick stories from the show floor.",
+ "Broadcast Beat's live coverage of 2026 NAB Show: 1,100+ exhibitors, the latest product launches, booth-by-booth news, and editorial pick stories from the show floor.",
alternates: { canonical: "/nab-2026" },
openGraph: {
- title: "NAB Show 2026 — Live Coverage Hub",
+ title: "2026 NAB Show — Live Coverage Hub",
description:
- "Live coverage, exhibitor list, and breaking product news from NAB Show 2026.",
+ "Live coverage, exhibitor list, and breaking product news from 2026 NAB Show.",
type: "website",
url: "https://broadcastbeat.com/nab-2026",
},
@@ -101,7 +101,7 @@ export default async function NabHub() {
April 11–16, 2026 · Las Vegas
- NAB Show 2026
+ 2026 NAB Show
{exhibitors.length.toLocaleString()} exhibitors confirmed.
@@ -118,7 +118,7 @@ export default async function NabHub() {
- Coverage Partners at NAB
+ Coverage Partners at the 2026 NAB Show
{sponsorRows.length} exhibiting partner{sponsorRows.length === 1 ? "" : "s"}
@@ -193,7 +193,7 @@ export default async function NabHub() {
- All NAB 2026 exhibitors
+ All 2026 NAB Show exhibitors
Full directory →
diff --git a/src/app/news/NewsPageClient.tsx b/src/app/news/NewsPageClient.tsx
index 82ddb4d..d080e3f 100644
--- a/src/app/news/NewsPageClient.tsx
+++ b/src/app/news/NewsPageClient.tsx
@@ -10,7 +10,7 @@ import type { Article } from "@/lib/articles/types";
import AISuggestedArticles from "@/components/AISuggestedArticles";
import SidebarAdStack from "@/components/SidebarAdStack";
-const CATEGORIES = ["All", "Cloud", "AI", "IP Workflows", "Live Production", "Streaming", "Audio", "Cameras", "NAB 2026", "EAS", "Sports Broadcasting", "Ad Tech"];
+const CATEGORIES = ["All", "Cloud", "AI", "IP Workflows", "Live Production", "Streaming", "Audio", "Cameras", "NAB Show", "EAS", "Sports Broadcasting", "Ad Tech"];
// Map URL category slugs (?category=live-production) to a matching CATEGORIES label.
function categoryFromSlug(slug: string | null): string {
@@ -72,9 +72,18 @@ export default function NewsPage({ articles }: { articles: Article[] }) {
// Category filter
if (activeCategory !== "All") {
const cat = activeCategory.toLowerCase();
+ // The NAB Show chip should match any NAB-tagged article regardless of
+ // year suffix in the legacy tag (e.g. "NAB 2026", "NAB", "NAB Show").
+ const isNabChip = /\bnab\b/.test(cat);
result = result.filter((a) => {
const tags = Array.isArray(a?.tags) ? a.tags : [];
const category = (a?.category ?? "").toLowerCase();
+ if (isNabChip) {
+ return (
+ tags.some((t) => /\bnab\b/.test((t ?? "").toLowerCase())) ||
+ /\bnab\b/.test(category)
+ );
+ }
return (
tags.some((t) => (t ?? "").toLowerCase() === cat) ||
category.includes(cat)
@@ -302,7 +311,7 @@ export default function NewsPage({ articles }: { articles: Article[] }) {
Popular Tags
- {["IP Workflows", "Cloud", "AI", "Live Production", "Streaming", "NAB 2026", "Audio", "Cameras"].map((tag) => (
+ {["IP Workflows", "Cloud", "AI", "Live Production", "Streaming", "NAB Show", "Audio", "Cameras"].map((tag) => (
diff --git a/src/components/CompanyMentionsHover.tsx b/src/components/CompanyMentionsHover.tsx
index cd13b14..f08c82b 100644
--- a/src/components/CompanyMentionsHover.tsx
+++ b/src/components/CompanyMentionsHover.tsx
@@ -125,10 +125,10 @@ export default function CompanyMentionsHover() {
Sponsor
)}
{preview.exhibitsNab && (
- NAB 26
+ 2026 NAB Show
)}
{preview.exhibitsIbc && (
- IBC
+ IBC 2026
)}
{preview.hq && {preview.hq}}