From 3064aa9a998072381132cf3fb413a0eb3d07185e Mon Sep 17 00:00:00 2001 From: angiejones Date: Sat, 15 Nov 2025 17:43:45 -0600 Subject: [PATCH] docs: remove hackathon banner --- 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 94640c945a68..fd240f186800 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} );