From aed3e98c7951754a2ba2db5edc02f2f778ff1822 Mon Sep 17 00:00:00 2001 From: zeppi Date: Fri, 23 Jul 2021 16:18:28 -0400 Subject: [PATCH] footer recon --- web/component/footer.jsx | 121 ++++++++++----------------------------- 1 file changed, 29 insertions(+), 92 deletions(-) diff --git a/web/component/footer.jsx b/web/component/footer.jsx index ad16140a5..07951e372 100644 --- a/web/component/footer.jsx +++ b/web/component/footer.jsx @@ -1,101 +1,38 @@ -import * as PAGES from 'constants/pages'; import React from 'react'; import Button from 'component/button'; - -const sections = [ - { - name: 'Community', - links: [ - { - label: 'Twitter', - link: 'https://twitter.com/lbrycom', - }, - { - label: 'Reddit', - link: 'https://reddit.com/r/lbry', - }, - { - label: 'Chat (Discord)', - link: 'https://chat.lbry.org/', - }, - { - label: 'Telegram', - link: 'https://t.me/lbryofficial', - }, - { - label: 'Facebook', - link: 'https://www.facebook.com/lbryio', - }, - ], - }, - { - name: 'Resources', - links: [ - { - label: 'FAQ', - link: 'https://lbry.com/faq', - }, - { - label: 'Support --[used in footer; general help/support]--', - link: 'https://lbry.com/faq/support', - }, - { - label: 'YouTube Partner Program', - link: 'https://lbry.com/youtube', - }, - { - label: 'lbry.com', - link: 'https://lbry.com', - }, - { - label: 'lbry.tech', - link: 'https://lbry.tech', - }, - { - label: 'GitHub', - link: 'https://github.com/lbryio', - }, - ], - }, - { - name: 'Policies', - links: [ - { - label: 'Terms of Service', - link: 'https://www.lbry.com/termsofservice', - }, - { - label: 'Privacy Policy', - link: 'https://lbry.com/privacypolicy', - }, - { - label: '2257', - navigate: `/$/${PAGES.CODE_2257}`, - }, - ], - }, -]; +import I18nMessage from 'component/i18nMessage'; +import { SIMPLE_SITE } from 'config'; export default function Footer() { + if (!SIMPLE_SITE) { + return null; + } return ( );