mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
82 lines
2 KiB
JavaScript
82 lines
2 KiB
JavaScript
import { Box, Text, Container } from 'theme-ui'
|
||
import { Fade } from 'react-reveal'
|
||
import Icon from '../icon'
|
||
|
||
export default function Run() {
|
||
return (
|
||
<>
|
||
<Container
|
||
variant="container"
|
||
sx={{
|
||
display: 'flex',
|
||
flexDirection: ['column', null, 'row'],
|
||
alignItems: 'center',
|
||
width: ['100%', '100%', '100%', '85%'],
|
||
bg: '#252429',
|
||
color: 'smoke',
|
||
px: 4,
|
||
|
||
borderRadius: 'default',
|
||
position: 'relative'
|
||
}}
|
||
>
|
||
<Container maxWidth={28} sx={{ mx: 0, py: 4 }}>
|
||
<Text variant="heading" sx={{ fontSize: 48 }}>
|
||
HCB doesn’t stop at closing ceremony.
|
||
</Text>
|
||
<br />
|
||
<Text variant="lead" sx={{ color: 'muted', fontSize: 28 }}>
|
||
Receiving and managing money is just the start. HCB helps you handle
|
||
ongoing obligations while you’re organizing.
|
||
</Text>
|
||
</Container>
|
||
<List>
|
||
<ListItem
|
||
icon="docs"
|
||
body="We handle ongoing tax filings including end-of-year taxes"
|
||
/>
|
||
<ListItem
|
||
icon="payment-docs"
|
||
body="Our accountants regularly reconcile your books"
|
||
/>
|
||
<ListItem
|
||
icon="history"
|
||
body="You always have access to historical financial data"
|
||
/>
|
||
</List>
|
||
</Container>
|
||
</>
|
||
)
|
||
}
|
||
|
||
function List({ children }) {
|
||
return (
|
||
<Box>
|
||
<ol style={{ listStyle: 'none', paddingLeft: 0 }}>{children}</ol>
|
||
</Box>
|
||
)
|
||
}
|
||
|
||
function ListItem({ icon, body }) {
|
||
return (
|
||
<Fade bottom>
|
||
<li
|
||
style={{
|
||
lineHeight: 1.25,
|
||
display: 'flex',
|
||
alignItems: 'center',
|
||
pl: 0
|
||
}}
|
||
>
|
||
<Icon
|
||
glyph={icon}
|
||
size={45}
|
||
sx={{ color: 'primary', flexShrink: 'none', flexShrink: 0, mr: 2 }}
|
||
/>
|
||
<Text fontSize={[32, 48]} variant="lead">
|
||
{body}
|
||
</Text>
|
||
</li>
|
||
</Fade>
|
||
)
|
||
}
|