av: clone broadcastbeat sources + AV Beat rebrand (Phase 1)
- Replaces the prior Rocket scaffold (saved on pre-bb-clone-rollback branch) - Domain: broadcastbeat.com -> avbeat.com - Brand: Broadcast Beat -> AV Beat - Slug: broadcastbeat -> avbeat (package, identifiers) - Schema fallback: bb -> av (env var name unchanged) - Placeholder AV BEAT logo (gold->red gradient) at /assets/logos/av.svg - All BB/RMP logo references repointed Outstanding before public DNS swap: - Supabase av schema bootstrap (mirror of bb tables) - WordPress archive import (avbeat-com -> av.articles) - Coolify env vars - dev-avbeat.onsethost.com staging deploy + visual review
This commit is contained in:
@@ -20,7 +20,8 @@ const footerColumns = [
|
||||
{ label: "Editorial Team", href: "/about#team" },
|
||||
{ label: "Advertise With Us", href: "/advertise" },
|
||||
{ label: "Contact Us", href: "/advertise#contact" },
|
||||
{ label: "Newsletter", href: "/home-page#newsletter" }]
|
||||
{ label: "Newsletter", href: "/home-page#newsletter" },
|
||||
{ label: "Video Archive", href: "/video-archive" }]
|
||||
|
||||
},
|
||||
{
|
||||
@@ -75,7 +76,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-[#E67E22] uppercase tracking-widest mb-4 pb-2 border-b border-[#E67E22]/20">
|
||||
<h4 className="font-body font-bold text-xs text-[#3b82f6] uppercase tracking-widest mb-4 pb-2 border-b border-[#3b82f6]/20">
|
||||
{col?.heading}
|
||||
</h4>
|
||||
<ul className="space-y-2">
|
||||
@@ -86,13 +87,13 @@ export default function Footer() {
|
||||
href={link?.href}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="footer-link font-body text-sm text-[#777777] hover:text-[#E67E22] transition-colors leading-relaxed inline-block">
|
||||
className="footer-link font-body text-sm text-[#777777] hover:text-[#3b82f6] transition-colors leading-relaxed inline-block">
|
||||
{link?.label}
|
||||
</a> :
|
||||
|
||||
<Link
|
||||
href={link?.href}
|
||||
className="footer-link font-body text-sm text-[#777777] hover:text-[#E67E22] transition-colors leading-relaxed inline-block">
|
||||
className="footer-link font-body text-sm text-[#777777] hover:text-[#3b82f6] transition-colors leading-relaxed inline-block">
|
||||
{link?.label}
|
||||
</Link>
|
||||
}
|
||||
@@ -114,38 +115,38 @@ export default function Footer() {
|
||||
src="/assets/images/logo.png"
|
||||
alt="AV Beat"
|
||||
width={180}
|
||||
height={42}
|
||||
className="h-9 w-auto object-contain" />
|
||||
height={24}
|
||||
className="h-6 w-auto object-contain" />
|
||||
</Link>
|
||||
|
||||
<div className="flex items-center gap-4">
|
||||
<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">
|
||||
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
|
||||
<LinkedInIcon size={17} />
|
||||
</a>
|
||||
<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">
|
||||
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
|
||||
<InstagramIcon size={17} />
|
||||
</a>
|
||||
<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">
|
||||
className="text-[#555] hover:text-[#3b82f6] transition-colors social-icon">
|
||||
<TwitterXIcon size={17} />
|
||||
</a>
|
||||
<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">
|
||||
className="text-[#555] hover:text-[#3b82f6] 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-[#E67E22] transition-colors">Privacy Policy</Link>
|
||||
<Link href="/terms" className="hover:text-[#E67E22] transition-colors">Terms of Service</Link>
|
||||
<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>
|
||||
<span>
|
||||
© 2026 <a
|
||||
href="https://www.relevantmediaproperties.com/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-[#E67E22] transition-colors underline-offset-2 hover:underline">
|
||||
className="hover:text-[#3b82f6] transition-colors underline-offset-2 hover:underline">
|
||||
Relevant Media Properties
|
||||
</a>. All rights reserved.
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user