mirror of
https://github.com/System-End/site.git
synced 2026-04-19 20:55:09 +00:00
* init * res * git * more raccooooons * - * meta * arc! * eeby * deeby * title * rsvp * yarn * new tab * alt * nav * meta * color magic * img conditional * grants * rsvp link * hs * meta * change domain * Change CTA text on Arcade page * new! * powerups * powerup * ob? * temp fix * rev * gal * faq * launch! * link * Post to both arcadius & airtable! * /arcade * exisiting * width * banner * Add ID to shop section * Move old power hour arcade * Tweak project idea generator prompt * Setup API for new shop inventory * Pull carousel items from new table * Display new carousel items * responsive fix * s * Update thinking lines to be a dino * Generate highlighted items list * sp * page * page * Pull highlighted check from airtable * get outta here racoon * fix? * page * reduce space * enable temporary waitlist * fix error * Don't trigger arcadius * button * responsive * Fix the airtable RSVP * Add link to previous power hour in footer * Randomize shop order * Update announcement copy * Remove unused css * Remove amazon mention * Fix typo * Fix arcade api & accessibility tweaks (#1227) * fix grammar * add alt text * fix arcade api * Add missing wizard orpheus link * Update FAQ copy * Add mockup of shop with new order links * Reorder FAQ * Fix shop costs showing * Include current user balance on shop * Update cards & add modals (#1230) update cards & add modals Co-authored-by: Dillon Barnes <dillonb07dev@gnmail.com> * Fix some react mapping without keys * Hide items from client (#1231) * update cards & add modals * filter items sent to client * fix faq typo --------- Co-authored-by: Dillon Barnes <dillonb07dev@gnmail.com> * Whitelist fields pulled from arcade page * Redact fields on shop page data * style * shop css * add alt text * buy button * ticket * Comment outdated copy * Update index.js * quantity * Experiment with changing the "One hour at a time" section * quantities * q * Add links in Arcade FAQ (#1232) * add links in FAQ * update hack-hour to arcade * Bring back slack invites for arcade * fix css --------- Co-authored-by: belle <bellesee1212@gmail.com> Co-authored-by: Zach Latta <zach@zachlatta.com> Co-authored-by: Jasper Mayone <me@jaspermayone.com> Co-authored-by: Dillon Barnes <gh@dillonb07.studio> Co-authored-by: Dillon Barnes <dillonb07dev@gnmail.com> Co-authored-by: Sam Poder <39828164+sampoder@users.noreply.github.com>
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
import { Box, Heading, Text, Link } from 'theme-ui'
|
|
import Footer from '../footer'
|
|
|
|
const Description = () => (
|
|
<Box sx={{ a: { color: '#FF5C00' }, 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%'] }}>
|
|
<Link href="/arcade/power-hour">Prelaunch site.</Link>
|
|
</Text>
|
|
<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 creating community and providing grants so you can make. In the past few years, we've{' '}
|
|
<Link href="https://summer.hackclub.com" target="_blank">
|
|
given away 100k+ in hardware grants
|
|
</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>
|
|
</Box>
|
|
)
|
|
|
|
const ArcadeFooter = () => {
|
|
return (
|
|
<Footer>
|
|
<Description />
|
|
</Footer>
|
|
)
|
|
}
|
|
|
|
export default ArcadeFooter
|