From ab2f048b6a4ab492465359b6189974d67d296d4b Mon Sep 17 00:00:00 2001 From: Oli Evans Date: Tue, 14 Nov 2023 10:01:52 +0000 Subject: [PATCH] feat: add specs link to sidebar (#11) Add an external link to the specs repo to the sidebar so folks can discover them, and as a demo of how to do it. Screenshot 2023-11-13 at 17 37 38 License: MIT --------- Signed-off-by: Oli Evans --- src/pages/docs/_meta.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/pages/docs/_meta.json b/src/pages/docs/_meta.json index ccc4f37..c1579f9 100644 --- a/src/pages/docs/_meta.json +++ b/src/pages/docs/_meta.json @@ -4,5 +4,10 @@ "w3cli": "Command line", "w3up-client": "JS Client", "how-to": "How to", - "concepts": "Concepts" -} \ No newline at end of file + "concepts": "Concepts", + "specs": { + "newWindow": true, + "title": "Specs", + "href": "https://github.com/web3-storage/specs" + } +}