From 1785726958602d509537f277c763db94f28b1044 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matev=C5=BE=20Jekovec?= Date: Wed, 6 Dec 2023 17:16:55 +0100 Subject: [PATCH] Rework footer --- docusaurus.config.js | 60 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 55 insertions(+), 5 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 46a33ac7ce..6aa59f0bb9 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -146,24 +146,74 @@ const config = { ], }, footer: { - style: 'dark', + style: 'light', links: [ { - title: 'Support', + title: 'General', items: [ { - label: 'Discord', - href: 'https://oasis.io/discord', + label: 'Explorer', + href: 'https://explorer.oasis.io', + }, + { + label: 'Oasis Wallet', + href: 'https://wallet.oasis.io', + }, + { + label: 'Oasis CLI', + href: 'https://github.com/oasisprotocol/cli', + }, + { + label: 'Status page', + href: 'https://status.oasis.io', + }, + ], + }, + { + title: 'dApp', + items: [ + { + label: 'Testnet Faucet', + href: 'https://faucet.testnet.oasis.dev/', + }, + { + label: 'Playground', + href: 'https://playground.oasis.io/', + }, + { + label: 'API Reference', + href: 'https://api.docs.oasis.io/', + }, + ], + }, + { + title: 'Node', + items: [ + { + label: 'Mainnet', + to: 'node/mainnet/', + }, + { + label: 'Testnet', + to: 'node/testnet/', }, ], }, { - title: 'Watch us', + title: 'Community', items: [ + { + label: 'Discord', + href: 'https://oasis.io/discord', + }, { label: 'Youtube', href: 'https://www.youtube.com/channel/UC35UFPcZ2F1wjPxhPrSsESQ', }, + { + label: 'Rosegarden', + href: 'https://oasisrose.garden', + }, ], }, ],