"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import Marquee from "@/components/Marquee"; // CUSTOMIZATION HOOK: replace address / email placeholders & colophon below. const links = [ { href: "/", en: "Home" }, { href: "/members", en: "Members" }, { href: "/publications", en: "Publications" }, { href: "/lectures", en: "Lectures" }, { href: "/standardization", en: "Standardization" }, ]; export default function Footer() { const pathname = usePathname(); if (pathname && pathname.startsWith("/console")) { return null; } return (