From 2abedbee42ba994ce6daf11886e8485ec7a62d91 Mon Sep 17 00:00:00 2001 From: Olivier Bazoud Date: Fri, 19 Sep 2025 12:29:27 +0200 Subject: [PATCH] chore(docs): add links for quickstarts and references & create references page --- docs/pages/references.mdx | 10 ++++++++++ docs/zudoku.config.ts | 2 ++ website/src/links.ts | 4 ++-- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 docs/pages/references.mdx diff --git a/docs/pages/references.mdx b/docs/pages/references.mdx new file mode 100644 index 00000000..60555c33 --- /dev/null +++ b/docs/pages/references.mdx @@ -0,0 +1,10 @@ +--- +title: "References" +--- + +Here you'll find references for Outpost global configuration, planning, roadmap and API documentation: + +- [Outpost Configuration](/docs/references/configuration) +- [Outpost Planning](https://github.com/orgs/hookdeck/projects/21/views/1) +- [Outpost Roadmap](/docs/references/roadmap) +- [Outpost API](/docs/api/authentication) diff --git a/docs/zudoku.config.ts b/docs/zudoku.config.ts index 8dc83bd9..f171cec2 100644 --- a/docs/zudoku.config.ts +++ b/docs/zudoku.config.ts @@ -81,6 +81,7 @@ const config: ZudokuConfig = { { type: "category", label: "Quickstarts", + link: "quickstarts", collapsed: false, collapsible: false, items: [ @@ -171,6 +172,7 @@ const config: ZudokuConfig = { { type: "category", label: "References", + link: "references", collapsed: false, collapsible: false, items: [ diff --git a/website/src/links.ts b/website/src/links.ts index 18d8aa93..a56976ab 100644 --- a/website/src/links.ts +++ b/website/src/links.ts @@ -3,8 +3,8 @@ const GITHUB = "https://github.com/hookdeck/outpost"; export const LINKS = { github: GITHUB, docs: `/docs`, - docs_quickstarts: `/docs/quickstart`, - docs_concepts: `/docs`, + docs_quickstarts: `/docs/quickstarts`, + docs_concepts: `/docs/concepts`, docs_features: `/docs/features`, docs_guides: `/docs/guides`, docs_references: `/docs/references`,