From 51fcf6dad75b3d51d0d6b6b6da222ef03de4b014 Mon Sep 17 00:00:00 2001 From: Randall Naar Date: Fri, 31 Jul 2026 16:31:48 -0400 Subject: [PATCH] Updated footer. --- client/src/views/footer.js | 165 +++++++++++++---- client/src/views/network-selection.js | 2 +- flavors/blockstream/config.env | 8 +- flavors/blockstream/extras.css | 27 +-- www/img/icons/fb.svg | 3 + www/img/icons/linkedin.svg | 3 + www/img/icons/telegram.svg | 3 + www/img/icons/x.svg | 3 + www/img/icons/yt.svg | 3 + www/style.css | 256 +++++++++++++++++++++++--- 10 files changed, 380 insertions(+), 93 deletions(-) create mode 100644 www/img/icons/fb.svg create mode 100644 www/img/icons/linkedin.svg create mode 100644 www/img/icons/telegram.svg create mode 100644 www/img/icons/x.svg create mode 100644 www/img/icons/yt.svg diff --git a/client/src/views/footer.js b/client/src/views/footer.js index 8292b3a94..e82bded9f 100644 --- a/client/src/views/footer.js +++ b/client/src/views/footer.js @@ -1,51 +1,140 @@ +import { ChevronDownIcon } from '../components/icons' + const staticRoot = process.env.STATIC_ROOT || '' -const links = process.env.FOOTER_LINKS ? JSON.parse(process.env.FOOTER_LINKS) : { [staticRoot+'img/github_blue.png']: 'https://github.com/blockstream/esplora' } +const productLinks = [ + ['Blockstream App', 'https://blockstream.com/app/'], + ['Blockstream Jade', 'https://blockstream.com/jade/'], + ['Blockstream Enterprise', 'https://blockstream.com/enterprise/'], + ['Blockstream AMP', 'https://blockstream.com/amp/'], + ['Blockstream Explorer', 'https://blockstream.info/'], + ['Greenlight', 'https://blockstream.com/lightning/greenlight/'], + ['Cryptocurrency Data Feed', 'https://blockstream.com/cryptofeed/'], + ['Liquid Network', 'https://blockstream.com/liquid/'], + ['Core Lightning', 'https://blockstream.com/lightning/'], + ['Elements', 'https://blockstream.com/elements/'], + ['Simplicity', 'https://simplicity-lang.org/'] +] -export default ({ t, page }) => -