diff --git a/src/components/ui/footer.tsx b/src/components/ui/footer.tsx index e8f0184..0698bda 100644 --- a/src/components/ui/footer.tsx +++ b/src/components/ui/footer.tsx @@ -1,7 +1,10 @@ import Link from "next/link"; import { ECOSYSTEM_PILLARS, SOLON_GITHUB_URL } from "@/lib/config/ecosystem"; +import { FOOTER_SECTIONS, footerLinkLabel } from "@/lib/site-config"; // Only routes that actually exist belong here — a footer link to a 404 is a lie. +// That is now structural rather than a promise: every destination below comes +// from NAV_ITEMS, so a page removed from the nav cannot survive in the footer. export default function Footer() { const siblings = ECOSYSTEM_PILLARS.filter((p) => p.key !== "solon"); @@ -9,93 +12,47 @@ export default function Footer() {