From 5066a09c77a79ddc9b30113adb1c7a9e162f0a0f Mon Sep 17 00:00:00 2001 From: Angie Jones Date: Sat, 15 Nov 2025 18:35:44 -0600 Subject: [PATCH] docs: remove hackathon banner (#5756) --- documentation/src/theme/Root.tsx | 52 +++++++++++++++++--------------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/documentation/src/theme/Root.tsx b/documentation/src/theme/Root.tsx index 94640c94..fd240f18 100644 --- a/documentation/src/theme/Root.tsx +++ b/documentation/src/theme/Root.tsx @@ -5,37 +5,41 @@ interface Props { children: ReactNode; } +const SHOW_BANNER = false; + export default function Root({ children }: Props): JSX.Element { return ( <> -
- ✨ NO KEYBOARDS ALLOWED HACKATHON✨ : build next-gen interfaces with goose and win prizes.{' '} - - Deadline Nov 14 - - . -
+ ✨ NO KEYBOARDS ALLOWED HACKATHON✨ : build next-gen interfaces with goose and win prizes.{' '} + + Deadline Nov 14 + + . + + )} {children} );