Round of edits

This commit is contained in:
Ella 2022-08-05 12:04:01 -07:00
parent f8c2f77031
commit 16964920da
4 changed files with 9 additions and 11 deletions

View file

@ -29,9 +29,7 @@ const Content = () => (
>
<Container maxWidth={28} sx={{ mx: 0, py: 4 }}>
{/* https://www.firstinspires.org/sites/default/files/uploads/resource_library/brand/first-brand-guidelines-2020.pdf */}
<Text variant="eyebrow">
Hack Club Bank & <em>FIRST</em>
</Text>
<Text variant="eyebrow">Hack Club Bank</Text>
<br />
<Text
as="span"
@ -50,7 +48,7 @@ const Content = () => (
<ListItem
knew
icon="payment"
leadText="$500 grants."
leadText="$500 grants (in partnership with FIRST)."
body={
<>
Get a $500 grant once you have a venue for your hackathon,

View file

@ -1,12 +1,12 @@
import { Card, Box, Heading, Grid, Text, Container } from 'theme-ui'
import Stage from '../stage'
export default function Rundown() {
export default function Recap() {
return (
<>
<Box as="header" sx={{ textAlign: [null, 'center'], pt: [4, 5] }}>
<Text as="p" variant="eyebrow">
Let's recap
Get started today
</Text>
<Heading as="h2" variant="title">
Resources so you can organize an{' '}
@ -61,7 +61,7 @@ export default function Rundown() {
icon="slack"
color="white"
name="Slack community"
desc={`Connect with a community of high school hackathon organizers and get support from peers.`}
desc={`Join the Slack and get support in anything hackathon-organizing from sponsorships to logistics to ordering food.`}
/>
</Card>
<Card

View file

@ -29,11 +29,11 @@ export default function ScrollingHackathons({ eventData }) {
>
Upcoming high school hackathons...
</Heading>
{/* <Dot /> */}
<Dot />
<Text variant="lead" sx={{ mb: 4, color: 'muted', mr: 2 }}>
from{' '}
<NextLink href="https://hackathons.hackclub.com" passHref>
<Link>hackathons.hackclub.com</Link>
<Link sx={{ color: 'currentcolor' }}>hackathons.hackclub.com</Link>
</NextLink>
, last updated just now.
</Text>

View file

@ -5,7 +5,7 @@ import ForceTheme from '../components/force-theme'
import Nav from '../components/nav'
import Footer from '../components/footer'
import Rundown from '../components/hackathons/rundown'
import Recap from '../components/hackathons/recap'
import Slack from '../components/hackathons/features/slack'
import Money from '../components/hackathons/features/money'
import Landing from '../components/hackathons/landing'
@ -35,7 +35,7 @@ export default function Hackathons({ data }) {
<Slack />
<Marketing />
<Container>
<Rundown />
<Recap />
</Container>
</Box>
</Box>