import {
Box,
Button,
Card,
Container,
Grid,
Heading,
Image,
Link,
Text
} from 'theme-ui'
import Meta from '@hackclub/meta'
import Head from 'next/head'
import NextLink from 'next/link'
import Nav from '../components/nav'
import SlideDown from '../components/slide-down'
import FadeIn from '../components/fade-in'
import Icon from '../components/icon'
import Footer from '../components/footer'
import { keyframes } from '@emotion/react'
const floating = keyframes`
from {
transform: translateY(20px);
}
to {
transform: translateY(-20px);
}
`
// (msw) Credit for this totally goes to https://codepen.io/WebSonick/pen/vjmgu
const twinkling = keyframes`
from { background-position: 0 0; }
to { background-position: -10000px 5000px; }
`
const color = '#50E3C2'
const Page = () => (
<>
Hack Night
The Hack Club community regularly gathers on Zoom or Huddles. It’s a
chance to meet new friends, livestream what you’re hacking on, or just
hang out on a chill call.
Hack nights are hosted regularly by Hack Clubbers. Come join or start
an impromptu Hack session on{' '}
#hack-night
!
>
)
export default Page