From 7e3a754b83b0fdb606810fc66122fba29db062f1 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Wed, 12 Nov 2025 21:21:31 -0500 Subject: [PATCH] hackathon banner (#5710) --- documentation/src/theme/Root.tsx | 42 ++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 documentation/src/theme/Root.tsx diff --git a/documentation/src/theme/Root.tsx b/documentation/src/theme/Root.tsx new file mode 100644 index 00000000..7a32f74f --- /dev/null +++ b/documentation/src/theme/Root.tsx @@ -0,0 +1,42 @@ +import React from 'react'; +import type { ReactNode } from 'react'; + +interface Props { + children: ReactNode; +} + +export default function Root({ children }: Props): JSX.Element { + return ( + <> +
+ Join our hackathon to build next-gen interfaces with goose and win prizes.{' '} + + Deadline Nov 14 + + . +
+ {children} + + ); +}