From 3f650e8c3ed44cc598264a2d93c29f940af83fec Mon Sep 17 00:00:00 2001 From: fmercadop Date: Fri, 24 Apr 2026 14:37:40 -0700 Subject: [PATCH] feat(navbar): add external official docs links to Reference dropdown --- docusaurus.config.js | 41 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index b45fb3b..9d179d9 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -233,6 +233,7 @@ const config = { position: 'left', items: [ + { type: 'html', value: 'Platform Reference' }, { label: 'Administration Menu', to: '/docs/reference/admin-menu/', @@ -249,11 +250,7 @@ const config = { to: '/docs/category/datacoves-1/', }, - { - label: 'dbt docs', - to: 'https://docs.getdbt.com/', - - }, + { label: 'Security', @@ -265,6 +262,40 @@ const config = { to: '/docs/reference/vscode/', }, + + { type: 'html', value: '' }, + { type: 'html', value: 'Official Docs (External)' }, + + // external items using href: + + { + label: 'Airbyte Docs', + href: 'https://docs.airbyte.com' + }, + { + label: 'Airflow Docs', + href: 'https://airflow.apache.org/docs/apache-airflow/2.10.5/' + }, + { + label: 'dbt Docs', + href: 'https://docs.getdbt.com/' + }, + { + label: 'dlt Docs', + href: 'https://dlthub.com/docs/intro' + }, + { + label: 'Git Docs', + href: 'https://git-scm.com/doc' + }, + { + label: 'Permifrost Docs', + href: 'https://gitlab.com/gitlab-data/permifrost' + }, + { + label: 'Snowcap Docs', + href: 'https://snowcap.datacoves.com' + }, ], },