AV Beat rebrand: theme swap (orange #E67E22 / near-black), logo, schema default → avb

- public/assets/images/logo.png + public/brand/logo*.png replaced with the 1320x310 AV Beat logo
- public/assets/logos/avbeat.png added as the canonical source
- tailwind.config.js + src/styles/tailwind.css + src/styles/redesign-tokens.css palette swapped (primary #0F0E0E, secondary #1D1A1A, accent #E67E22 orange, foreground #F0EBE6 warm white)
- Layout / robots / sitemap / home-page / about / contact / press-kit / team / global-error metadata switched to AV Beat (Where AV Meets IT)
- Bulk replaced 'Broadcast Beat'/'BroadcastBeat.com'/'broadcastbeat.com' across user-facing news/forum/marketplace/advertise/search/newsletter pages
- src/lib/supabase/{admin,server,client} now default to schema 'avb' (was 'bb') — overridable via NEXT_PUBLIC_SUPABASE_SCHEMA
- package.json renamed to 'avbeat'
- Single d60701 reference in about/team swapped to E67E22

Design-only replica — no article content migrated.
This commit is contained in:
Ryan Salazar
2026-06-01 15:30:16 +00:00
parent 6a48473905
commit d67a2bd48d
64 changed files with 522 additions and 519 deletions

View File

@@ -15,7 +15,7 @@ const footerColumns = [
{
heading: "About",
links: [
{ label: "About Broadcast Beat", href: "/about" },
{ label: "About AV Beat", href: "/about" },
{ label: "Our Mission", href: "/about#mission" },
{ label: "Editorial Team", href: "/about#team" },
{ label: "Advertise With Us", href: "/advertise" },
@@ -50,11 +50,11 @@ const footerColumns = [
{
heading: "Follow Us",
links: [
{ label: "LinkedIn", href: "https://linkedin.com/company/broadcastbeat" },
{ label: "Twitter / X", href: "https://twitter.com/broadcastbeat" },
{ label: "Facebook", href: "https://facebook.com/broadcastbeat" },
{ label: "Instagram", href: "https://instagram.com/broadcastbeat" },
{ label: "YouTube", href: "https://youtube.com/@broadcastbeat" },
{ label: "LinkedIn", href: "https://linkedin.com/company/avbeat" },
{ label: "Twitter / X", href: "https://twitter.com/avbeat" },
{ label: "Facebook", href: "https://facebook.com/avbeat" },
{ label: "Instagram", href: "https://instagram.com/avbeat" },
{ label: "YouTube", href: "https://youtube.com/@avbeat" },
{ label: "RSS Feed", href: "/rss" }]
}];
@@ -75,7 +75,7 @@ export default function Footer() {
<div className="border-t border-[#222] pt-8 pb-6 grid grid-cols-2 md:grid-cols-4 gap-8">
{footerColumns?.map((col) =>
<div key={col?.heading}>
<h4 className="font-body font-bold text-xs text-[#3b82f6] uppercase tracking-widest mb-4 pb-2 border-b border-[#3b82f6]/20">
<h4 className="font-body font-bold text-xs text-[#E67E22] uppercase tracking-widest mb-4 pb-2 border-b border-[#E67E22]/20">
{col?.heading}
</h4>
<ul className="space-y-2">
@@ -86,13 +86,13 @@ export default function Footer() {
href={link?.href}
target="_blank"
rel="noopener noreferrer"
className="footer-link font-body text-sm text-[#777777] hover:text-[#3b82f6] transition-colors leading-relaxed inline-block">
className="footer-link font-body text-sm text-[#777777] hover:text-[#E67E22] transition-colors leading-relaxed inline-block">
{link?.label}
</a> :
<Link
href={link?.href}
className="footer-link font-body text-sm text-[#777777] hover:text-[#3b82f6] transition-colors leading-relaxed inline-block">
className="footer-link font-body text-sm text-[#777777] hover:text-[#E67E22] transition-colors leading-relaxed inline-block">
{link?.label}
</Link>
}
@@ -108,44 +108,44 @@ export default function Footer() {
<div className="border-t border-[#222] pt-5 pb-3 flex flex-col sm:flex-row items-center justify-between gap-4">
<Link
href="/home-page"
aria-label="Broadcast Beat — home"
aria-label="AV Beat — home"
className="flex-shrink-0 opacity-70 hover:opacity-100 transition-opacity">
<AppImage
src="/assets/images/logo.png"
alt="Broadcast Beat"
alt="AV Beat"
width={180}
height={24}
className="h-6 w-auto object-contain" />
height={42}
className="h-9 w-auto object-contain" />
</Link>
<div className="flex items-center gap-4">
<a href="https://linkedin.com/company/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="Broadcast Beat on LinkedIn"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
<a href="https://linkedin.com/company/avbeat" target="_blank" rel="noopener noreferrer" aria-label="AV Beat on LinkedIn"
className="text-[#555] hover:text-[#E67E22] transition-colors social-icon">
<LinkedInIcon size={17} />
</a>
<a href="https://instagram.com/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="Broadcast Beat on Instagram"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
<a href="https://instagram.com/avbeat" target="_blank" rel="noopener noreferrer" aria-label="AV Beat on Instagram"
className="text-[#555] hover:text-[#E67E22] transition-colors social-icon">
<InstagramIcon size={17} />
</a>
<a href="https://twitter.com/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="Broadcast Beat on Twitter/X"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
<a href="https://twitter.com/avbeat" target="_blank" rel="noopener noreferrer" aria-label="AV Beat on Twitter/X"
className="text-[#555] hover:text-[#E67E22] transition-colors social-icon">
<TwitterXIcon size={17} />
</a>
<a href="https://facebook.com/broadcastbeat" target="_blank" rel="noopener noreferrer" aria-label="Broadcast Beat on Facebook"
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
<a href="https://facebook.com/avbeat" target="_blank" rel="noopener noreferrer" aria-label="AV Beat on Facebook"
className="text-[#555] hover:text-[#E67E22] transition-colors social-icon">
<FacebookIcon size={17} />
</a>
</div>
<div className="flex items-center gap-4 text-xs font-body text-[#555]">
<Link href="/privacy" className="hover:text-[#3b82f6] transition-colors">Privacy Policy</Link>
<Link href="/terms" className="hover:text-[#3b82f6] transition-colors">Terms of Service</Link>
<Link href="/privacy" className="hover:text-[#E67E22] transition-colors">Privacy Policy</Link>
<Link href="/terms" className="hover:text-[#E67E22] transition-colors">Terms of Service</Link>
<span>
© 2026 <a
href="https://www.relevantmediaproperties.com/"
target="_blank"
rel="noopener noreferrer"
className="hover:text-[#3b82f6] transition-colors underline-offset-2 hover:underline">
className="hover:text-[#E67E22] transition-colors underline-offset-2 hover:underline">
Relevant Media Properties
</a>. All rights reserved.
</span>