From fc471557443d351d54cc971198dba5eea62c0fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Tue, 19 Dec 2023 17:15:54 +0100 Subject: [PATCH] Add an announcement bar warning users that this is not finished --- docusaurus.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 8c4e13556..bed91caad 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -125,6 +125,14 @@ const config: Config = { theme: prismThemes.github, darkTheme: prismThemes.dracula, }, + announcementBar: { + id: 'under_construction', + content: + 'This site is under construction. Please visit https://osbuild.org for the live website.', + backgroundColor: '#fafbfc', + textColor: '#091E42', + isCloseable: false, + }, } satisfies Preset.ThemeConfig, };