From ce90e86557c784301e25c75a56249cc64e826b69 Mon Sep 17 00:00:00 2001 From: Pavithra Eswaramoorthy Date: Fri, 30 Jan 2026 14:46:09 +0100 Subject: [PATCH 1/2] Add announcement banner about next chapter --- docs/docusaurus.config.js | 5 +++++ docs/src/theme/components/navbar.scss | 16 ++++++---------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 138147396..8598fed16 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -223,6 +223,11 @@ const config = { theme: lightCodeTheme, darkTheme: darkCodeTheme, }, + announcementBar: { + content: + '✨ The Nebari project is evolving into an ecosystem of tools, stay tuned for more updates! ✨', + isCloseable: true, + }, }), }; diff --git a/docs/src/theme/components/navbar.scss b/docs/src/theme/components/navbar.scss index 273134ef9..36a4dce30 100644 --- a/docs/src/theme/components/navbar.scss +++ b/docs/src/theme/components/navbar.scss @@ -4,7 +4,7 @@ .navbar__brand { @include link-style(var(--secondary-nebari), var(--secondary-nebari)); - & { + & { text-decoration: none; } @@ -36,7 +36,7 @@ .navbar__brand { @include link-style(var(--secondary-nebari), var(--secondary-nebari)); - & { + & { text-decoration: none; } } @@ -91,13 +91,9 @@ html[data-theme="dark"] .header-github-link:before { // ============================================================================== div[class^="announcementBar_"] { - font-weight: 500; - height: 70px; - background-color: var(--nebari-blue-gray-11); + font-weight: 550; + height: 50px; + background-color: var(--ifm-color-on-background-2); + color: var(--ifm-color-content-inverse); border-bottom: 2px solid var(--secondary-nebari); } - -div[class^="announcementBarContent_"] { - font-size: 1rem; - padding: 20px 0; -} From 4f1a00d57fdedccaae23f07422b4b3ad1eaf0415 Mon Sep 17 00:00:00 2001 From: Pavithra Eswaramoorthy Date: Fri, 30 Jan 2026 15:25:18 +0100 Subject: [PATCH 2/2] update banner content --- docs/docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 8598fed16..8c18be47f 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -225,7 +225,7 @@ const config = { }, announcementBar: { content: - '✨ The Nebari project is evolving into an ecosystem of tools, stay tuned for more updates! ✨', + '✨ Nebari is evolving into an ecosystem of open source tools for AI workflows, stay tuned for more updates! ✨', isCloseable: true, }, }),