mirror of
https://github.com/System-End/site.git
synced 2026-04-19 20:55:09 +00:00
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
import { Box, Heading, Text, Link } from 'theme-ui'
|
|
import Footer from '../footer'
|
|
|
|
const Description = () => (
|
|
<Box sx={{ a: { color: 'blue' }, pb: 4 }}>
|
|
<Heading as="h3" variant="subheadline" mb={2}>
|
|
A project by <a href="https://hackclub.com/">Hack Club</a>.
|
|
</Heading>
|
|
<Text as="p" variant="caption" mb={3} sx={{ width: ['85%', '75%', '60%'] }}>
|
|
Hack Club is a registered 501(c)3 nonprofit organization that supports a
|
|
network of 20k+ technical high schoolers. We believe you learn best by
|
|
building so we're removing barriers to hardware access so any teenager can
|
|
explore. In the past few years, we've{' '}
|
|
<Link href="https://summer.hackclub.com" target="_blank">
|
|
partnered with GitHub to give away $50k of hardware
|
|
</Link>
|
|
,{' '}
|
|
<Link
|
|
href="https://github.com/hackclub/the-hacker-zephyr"
|
|
target="_blank"
|
|
>
|
|
hosted the world's longest hackathon on land
|
|
</Link>
|
|
, and{' '}
|
|
<Link href="https://github.com/hackclub/assemble" target="_blank">
|
|
brought 183 teenagers to SF for a hackathon
|
|
</Link>
|
|
.
|
|
</Text>
|
|
<Text as="p" variant="caption" mb={1}>
|
|
Illustrations by Ripley.
|
|
</Text>
|
|
</Box>
|
|
)
|
|
|
|
const WinterFooter = () => {
|
|
return (
|
|
<Footer>
|
|
<Description />
|
|
</Footer>
|
|
)
|
|
}
|
|
|
|
export default WinterFooter
|