diff --git a/documentation/src/theme/Root.tsx b/documentation/src/theme/Root.tsx new file mode 100644 index 000000000000..7a32f74fa0fb --- /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} + + ); +}