From 18e72a30db50326cf2438c1e3ada4f2703ef6f53 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Tue, 5 Mar 2024 18:40:26 -0600 Subject: [PATCH] nostr: add link under community, fix .well-known location --- docs/.vuepress/config.js | 6 ++++++ {static => docs/.vuepress/public}/.well-known/nostr.json | 0 2 files changed, 6 insertions(+) rename {static => docs/.vuepress/public}/.well-known/nostr.json (100%) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 49f1d7fd4c..f7f8794dab 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -6,6 +6,7 @@ const baseUrl = 'https://bitcoindevkit.org' const githubUrl = 'https://github.com/bitcoindevkit' const discordUrl = 'https://discord.gg/dstn4dQ' const twitterUrl = 'https://twitter.com/intent/follow?screen_name=bitcoindevkit' +const nostrUrl = 'nostr:npub13dk3dke4zm9vdkucm7f6vv7vhqgkevgg3gju9kr2wzumz7nrykdq0dgnvc' const themeColor = '#ffffff' const docsSidebar = [ @@ -147,6 +148,11 @@ module.exports = { link: githubUrl, rel: 'noopener noreferrer' }, + { + text: 'Nostr', + link: nostrUrl, + rel: 'noopener noreferrer' + }, { text: 'Twitter', link: twitterUrl, diff --git a/static/.well-known/nostr.json b/docs/.vuepress/public/.well-known/nostr.json similarity index 100% rename from static/.well-known/nostr.json rename to docs/.vuepress/public/.well-known/nostr.json -- 2.49.0