import React from "react"; import Link from "next/link"; import AppImage from "@/components/ui/AppImage"; import AnimatedLogo from "@/components/AnimatedLogo"; import { LinkedInIcon, InstagramIcon, TwitterXIcon, FacebookIcon } from "@/components/ui/Icons"; import AdImage from "@/components/AdImage"; import { pickAds } from "@/lib/ads"; // DO NOT OVERRIDE — Footer column structure and link targets const footerColumns = [ { heading: "About", links: [ { label: "About AV Beat", href: "/about" }, { label: "Our Mission", href: "/about#mission" }, { 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: "Video Archive", href: "/video-archive" }] }, { heading: "Categories", links: [ { label: "Industry News", href: "/news" }, { label: "Gear & Reviews", href: "/gear" }, { label: "Show Coverage", href: "/show-coverage" }, { label: "Production Technology", href: "/technology" }, { label: "Live Production", href: "/news?category=live-production" }, { label: "AI & Automation", href: "/technology?category=ai" }, { label: "Streaming", href: "/technology?category=streaming" }, { label: "Audio", href: "/gear?category=audio" }] }, { heading: "Events", links: [ { label: "NAB Show", href: "/show-coverage" }, { label: "IBC", href: "/show-coverage?event=ibc" }, { label: "Cine Gear", href: "/show-coverage?event=cine-gear" }, { label: "SXSW", href: "/show-coverage?event=sxsw" }, { label: "Streaming Summit", href: "/show-coverage?event=streaming-summit" }, { label: "All Events", href: "/show-coverage" }] }, { heading: "Follow Us", links: [ { 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" }] }]; export default function Footer() { return ( ); }