diff --git a/explorer-nextjs/src/components/footer/index.tsx b/explorer-nextjs/src/components/footer/index.tsx index 74494c53d3..1460c5cdc2 100644 --- a/explorer-nextjs/src/components/footer/index.tsx +++ b/explorer-nextjs/src/components/footer/index.tsx @@ -11,32 +11,6 @@ import { Link } from "./MuiLink"; // import { NewsletterSignUp } from "./NewsLetterSignUp"; import { FooterLinks } from "./footer-links"; -const links = [ - { id: 1, title: "Imprint", url: "https://nym.com/imprint" }, - - { - id: 2, - title: "nym.com Privacy statement", - url: "https://nym.com/nym-com-privacy-statement", - }, - { id: 3, title: "NymVPN Terms of use", url: "https://nym.com/vpn-terms" }, - { - id: 4, - title: "NymVPN referrals Terms", - url: "https://nym.com/referrals-terms-and-conditions", - }, - { - id: 5, - title: "NymVPN apps Privacy statement", - url: "https://nym.com/vpn-privacy-statement", - }, - { - id: 6, - title: "Nym Operators and Validators Terms", - url: "https://nym.com/operators-validators-terms", - }, -]; - export async function Footer() { const locale = "en"; const footerData = await getFooter(locale); @@ -44,6 +18,32 @@ export async function Footer() { const legalContent2 = footerData?.attributes?.legalContent2 || false; const footerLinkBlocks = footerData?.attributes?.linkBlocks || []; + const links = [ + { id: 1, title: "Imprint", url: "https://nym.com/imprint" }, + + { + id: 2, + title: "nym.com Privacy statement", + url: "https://nym.com/nym-com-privacy-statement", + }, + { id: 3, title: "NymVPN Terms of use", url: "https://nym.com/vpn-terms" }, + { + id: 4, + title: "NymVPN referrals Terms", + url: "https://nym.com/referrals-terms-and-conditions", + }, + { + id: 5, + title: "NymVPN apps Privacy statement", + url: "https://nym.com/vpn-privacy-statement", + }, + { + id: 6, + title: "Nym Operators and Validators Terms", + url: "https://nym.com/operators-validators-terms", + }, + ]; + return ( <>