header+ticker: new menu (HOME/FEATURED/THE LATEST/SHOW COVERAGE/FORUM/ABOUT) + drop reduced-motion rule that was freezing ticker animation

This commit is contained in:
Ryan Salazar
2026-05-22 01:22:12 +00:00
parent 00a79f12b7
commit e6eb3cc99c
4 changed files with 10 additions and 9 deletions

View File

@@ -28,8 +28,11 @@ interface NavItem {
}
const navLinks: NavItem[] = [
{ label: "Newsletter", href: "/newsletter" },
{ label: "Forum", href: "/forum" },
{ label: "HOME", href: "/" },
{ label: "FEATURED", href: "/#featured" },
{ label: "THE LATEST", href: "/news" },
{ label: "SHOW COVERAGE", href: "/show-coverage" },
{ label: "FORUM", href: "/forum" },
];
export default function Header() {
@@ -627,7 +630,6 @@ export default function Header() {
{/* Menu (right) */}
<nav className="bb-browse-menu" aria-label="Main sections">
<EventsDropdown />
{navLinks.map((link) => (
<Link
key={link.label}