From 9178755f8ba34927022b9c6d4a7613903dc24cf7 Mon Sep 17 00:00:00 2001 From: LordGhostX Date: Thu, 4 May 2023 04:23:44 +0100 Subject: [PATCH] update footer links --- docusaurus.config.js | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 88226f3..98bebd6 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -28,7 +28,7 @@ const config = { docs: { routeBasePath: "/", sidebarPath: require.resolve("./sidebars.js"), - editUrl: "https://github.com/waku-org/waku.guide/tree/staging/", + editUrl: "https://github.com/waku-org/waku.guide/tree/develop/", }, theme: { name: "docusaurus-default", @@ -68,15 +68,27 @@ const config = { ], }, announcementBar: { - id: "support_us", content: - "Waku is not production ready yet. Join our discord community to stay updated.", + "Waku is not production ready yet. Join our Discord Community to stay updated.", backgroundColor: "#EBEDF0", textColor: "#1B1B1D", isCloseable: true, }, footer: { links: [ + { + title: "Legal", + items: [ + { + href: "https://waku.org/terms-of-use", + label: "Terms of Use", + }, + { + href: "https://waku.org/privacy-policy", + label: "Privacy Policy", + }, + ], + }, { title: "Community", items: [ @@ -96,7 +108,28 @@ const config = { href: "https://t.me/waku_org", label: "Telegram", }, - ], + ], + }, + { + title: "Resources", + items: [ + { + href: "https://github.com/waku-org", + label: "GitHub", + }, + { + href: "https://vac.dev/research", + label: "Blog", + }, + { + href: "https://vac.dev/", + label: "Vac", + }, + { + href: "https://rfc.vac.dev/", + label: "Vac RFCs", + }, + ], }, ], },