diff --git a/components/landing/footer.tsx b/components/landing/footer.tsx index c9b4e6f..a931671 100644 --- a/components/landing/footer.tsx +++ b/components/landing/footer.tsx @@ -1,14 +1,10 @@ import { Logo } from "@/components/landing/logo"; import { SocialButtons } from "@/components/landing/social-buttons"; import { getDappUrl, siteConfig } from "@/lib/site"; +import { footerLandingLinks } from "@/lib/landing-nav"; const FOOTER_LINKS = { - links: [ - { label: "Problem", href: "#problem" }, - { label: "Solution", href: "#solution" }, - { label: "FAQ", href: "#faq" }, - { label: "Contact", href: siteConfig.issues }, - ], + links: footerLandingLinks, resources: [ { label: "GitHub", href: siteConfig.github, external: true }, { label: "API", href: siteConfig.backendRepo, external: true }, @@ -36,7 +32,7 @@ export function Footer() {