Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 28 additions & 24 deletions documentation/src/theme/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,41 @@ interface Props {
children: ReactNode;
}

const SHOW_BANNER = false;

export default function Root({ children }: Props): JSX.Element {
return (
<>
<div
style={{
backgroundColor: '#25c2a0',
color: '#000',
padding: '8px 16px',
textAlign: 'center',
fontSize: '14px',
fontWeight: '500',
position: 'relative',
zIndex: 1000,
lineHeight: '1.3',
}}
>
✨ NO KEYBOARDS ALLOWED HACKATHON✨ : build next-gen interfaces with goose and win prizes.{' '}
<a
href="https://nokeyboardsallowed.dev"
target="_blank"
rel="noopener noreferrer"
{SHOW_BANNER && (
<div
style={{
backgroundColor: '#25c2a0',
color: '#000',
textDecoration: 'underline',
fontWeight: '700',
padding: '8px 16px',
textAlign: 'center',
fontSize: '14px',
fontWeight: '500',
position: 'relative',
zIndex: 1000,
lineHeight: '1.3',
}}
>
Deadline Nov 14
</a>
.
</div>
✨ NO KEYBOARDS ALLOWED HACKATHON✨ : build next-gen interfaces with goose and win prizes.{' '}
<a
href="https://nokeyboardsallowed.dev"
target="_blank"
rel="noopener noreferrer"
style={{
color: '#000',
textDecoration: 'underline',
fontWeight: '700',
}}
>
Deadline Nov 14
</a>
.
</div>
)}
Comment thread
angiejones marked this conversation as resolved.
{children}
</>
);
Expand Down
Loading