site/components/announcements/hcb_cta.js
rluo.dev 520f0ed53b
[HCB] Get ready for mobile app launch! (#1720)
Co-authored-by: Luke Oldenburg <87272260+Luke-Oldenburg@users.noreply.github.com>
Co-authored-by: Mohamad Mortada <mmortada685@gmail.com>
Co-authored-by: Gary Tou <gary@garytou.com>
Co-authored-by: polypixeldev <me@sfernandez.dev>
2025-12-02 17:54:12 -08:00

44 lines
1.2 KiB
JavaScript

import { Box, Button, Grid, Heading, Text } from 'theme-ui'
import Icon from '@hackclub/icons'
import NextLink from 'next/link'
export default function HCBCTA() {
return (
<Box
as="section"
sx={{
bg: 'orange',
backgroundImage: t => t.util.gx('yellow', 'orange'),
color: 'white',
py: [4, 5]
}}
>
<Grid gap={[3, 4]} columns={[null, 'auto 1fr']} variant="layout.copy">
<Icon glyph="bank-account" size={72} />
<Box>
<Heading as="h2" variant="headline" mt={0}>
Looking to start a nonprofit?
</Heading>
<Text variant="subtitle" sx={{ lineHeight: 'caption', mb: 3 }}>
We're accepting applications! No startup fees, no minimum balance, and no long wait time.
</Text>
<br />
<br />
<NextLink href="/fiscal-sponsorship" passHref>
<Button bg="cyan" as="a">
Learn more
</Button>
</NextLink>
&nbsp;&nbsp;&nbsp;
<NextLink href="https://nonprofit.new" passHref>
<Button bg="orange" as="a">
Apply now
</Button>
</NextLink>
</Box>
</Grid>
</Box>
)
}