From 2363e08b762fec520b45099231612de4e310c5d4 Mon Sep 17 00:00:00 2001 From: Ben Wilson <39283302+BenWilson2@users.noreply.github.com> Date: Thu, 19 Dec 2024 21:07:16 -0500 Subject: [PATCH] Add survey banner (#136) Signed-off-by: Ben Wilson Co-authored-by: Daniel Lok --- website/docusaurus.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index ad64eac8f..1c7f83318 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -218,6 +218,14 @@ const config: Config = { theme: prismThemes.vsDark, darkTheme: prismThemes.vsDark, }, + announcementBar: { + id: "survey_bar", + content: + 'Help us improve MLflow by taking our survey!', + backgroundColor: "#0194e2", + textColor: "#ffffff", + isCloseable: false, + }, } satisfies Preset.ThemeConfig, };