From 6d5518d47ceb2240d9f453602a82f1eeaa115265 Mon Sep 17 00:00:00 2001 From: Sam Poder <39828164+sampoder@users.noreply.github.com> Date: Mon, 7 Dec 2020 10:57:37 +0800 Subject: [PATCH] Revert "Secret Santa (#69)" This reverts commit aa2fbd75715c29097b59bd5d5d4037036d4752e6. --- pages/santa.js | 85 -------------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 pages/santa.js diff --git a/pages/santa.js b/pages/santa.js deleted file mode 100644 index 17c05f77..00000000 --- a/pages/santa.js +++ /dev/null @@ -1,85 +0,0 @@ -import React from 'react' -import styled from 'styled-components' -import { - Box, - Container, - Heading, - Button, - Text, - theme -} from '@hackclub/design-system' -import Layout from 'components/Layout' -import Nav from 'components/Nav' -import Footer from 'components/Footer' -import Snow from 'resnow' -import { Lead } from 'components/Content' - -const Hero = styled(Box.withComponent('article'))` - background-image: linear-gradient( - to bottom right, - ${theme.colors.blue[5]}, - ${theme.colors.blue[6]} - ); - min-height: 100vh; - position: relative; - canvas { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - } -` - -const Megaline = styled(Heading.h1).attrs({ - color: 'white', - fontSize: [6, null, 7, 8], - pb: 2 -})` - line-height: 1.125; - max-width: 20rem; - @supports (-webkit-background-clip: text) { - background-image: linear-gradient( - to bottom right, - ${theme.colors.gray[0]}, - ${theme.colors.gray[3]} - ); - background-repeat: no-repeat; - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - } - ${theme.mediaQueries.md} { - max-width: none; - } -` - -const title = 'Hack Club Secret Santa – Holiday 2020' -const desc = 'Find your holiday zen this year with Hack Club’s Secret Santa.' - -export default () => ( - -