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:
@@ -62,7 +62,7 @@ const AV_CATEGORIES = [
|
||||
];
|
||||
|
||||
const SITE_CONFIG = {
|
||||
1: { name: 'Broadcast Beat', badge: 'BB', color: '#0ea5e9', bgClass: 'bg-[#0ea5e9]/10', textClass: 'text-[#0ea5e9]', borderClass: 'border-[#0ea5e9]/30' },
|
||||
1: { name: 'AV Beat', badge: 'BB', color: '#0ea5e9', bgClass: 'bg-[#0ea5e9]/10', textClass: 'text-[#0ea5e9]', borderClass: 'border-[#0ea5e9]/30' },
|
||||
2: { name: 'AV Beat', badge: 'AV', color: '#f97316', bgClass: 'bg-[#f97316]/10', textClass: 'text-[#f97316]', borderClass: 'border-[#f97316]/30' },
|
||||
};
|
||||
|
||||
@@ -162,7 +162,7 @@ export default function ContributorDashboard() {
|
||||
});
|
||||
const data = await res.json();
|
||||
if (data.scope === 'broadcast' && data.confidence > 0.75) {
|
||||
setScopeWarning('This content may be better suited for Broadcast Beat. AV Beat covers professional AV integration. Your post has been flagged for editorial review.');
|
||||
setScopeWarning('This content may be better suited for AV Beat. AV Beat covers professional AV integration. Your post has been flagged for editorial review.');
|
||||
} else {
|
||||
setScopeWarning(null);
|
||||
}
|
||||
@@ -194,7 +194,7 @@ export default function ContributorDashboard() {
|
||||
const data = await res.json();
|
||||
if (!res.ok) {
|
||||
if (data.blocked) {
|
||||
showNotification('error', 'This post could not be submitted. Please contact the editorial team at editor@broadcastbeat.com for assistance.');
|
||||
showNotification('error', 'This post could not be submitted. Please contact the editorial team at editor@avbeat.com for assistance.');
|
||||
} else {
|
||||
showNotification('error', data.error || 'Failed to submit post.');
|
||||
}
|
||||
@@ -361,7 +361,7 @@ export default function ContributorDashboard() {
|
||||
<div className="text-sm font-semibold text-white mb-3">Publish To</div>
|
||||
<div className="flex gap-3">
|
||||
{[
|
||||
{ id: 1, name: 'Broadcast Beat', badge: 'BB', color: '#0ea5e9' },
|
||||
{ id: 1, name: 'AV Beat', badge: 'BB', color: '#0ea5e9' },
|
||||
{ id: 2, name: 'AV Beat', badge: 'AV', color: '#f97316' },
|
||||
].map(site => (
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user