Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove kickoff banner #509

Merged
merged 8 commits into from
Jan 16, 2024
Merged
28 changes: 1 addition & 27 deletions src/common/header/containers/HeaderContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,34 +63,8 @@ export interface HeaderProps {
export function HeaderContainer({ onSearchChange }: HeaderProps): JSX.Element {
const smallScreen = useSmallScreen();
const tips: Array<JSX.Element> = smallScreen
? [
<Text>⚠️ Mobile is currently in beta.</Text>,
<Text>
⚠️ Want to build something like CourseUp? Come to the VikeLabs{' '}
<a
href="https://vikelabs.ca/kickoff"
style={{ textDecoration: 'underline' }}
target="_blank"
rel="noreferrer"
>
Kick-Off
</a>{' '}
on September 18th! 🚀
</Text>,
]
? [<Text>⚠️ Mobile is currently in beta.</Text>]
: [
<Text>
⚠️ Want to build something like CourseUp? Come to the VikeLabs{' '}
<a
href="https://vikelabs.ca/kickoff"
style={{ textDecoration: 'underline' }}
target="_blank"
rel="noreferrer"
>
Kick-Off
</a>{' '}
on September 18th! 🚀
</Text>,
<Text>
📅 The{' '}
<Text as={Link} to="/calendar/202309" textDecoration="underline">
Expand Down
Loading