mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
Add Instant Deposits to features on Bank marketing page (#503)
This commit is contained in:
parent
4d0b884522
commit
1541df1537
2 changed files with 32 additions and 40 deletions
|
|
@ -32,7 +32,8 @@ export default function Everything({ fee, partner = false }) {
|
|||
'Transaction data export': 'download',
|
||||
'Record shared notes on transactions': 'docs',
|
||||
'24-hour response support': 'clock',
|
||||
'Reimbursement process': 'enter'
|
||||
'Reimbursement process': 'enter',
|
||||
'Instant deposits': 'bolt'
|
||||
}).map(([item, icon = 'enter']) => (
|
||||
<ListItem key={item} icon={icon}>
|
||||
{item}
|
||||
|
|
@ -44,7 +45,7 @@ export default function Everything({ fee, partner = false }) {
|
|||
'Generate attendee legal waivers': '',
|
||||
'Virtual debit cards (with Apple & Google Pay)': '',
|
||||
'Debit card transaction paper trail': '',
|
||||
'Transparency Mode (optional)': '',
|
||||
'Transparency Mode (optional)': ''
|
||||
}).map(([item, date]) => (
|
||||
<ListItem
|
||||
key={item}
|
||||
|
|
@ -63,23 +64,25 @@ export default function Everything({ fee, partner = false }) {
|
|||
{item}
|
||||
</ListItem>
|
||||
))}
|
||||
{!partner ? Object.entries({
|
||||
'Instant Google Workspace & email addresses': '',
|
||||
'Online, embeddable donation form': ''
|
||||
}).map(([item, date]) => (
|
||||
<ListItem
|
||||
key={item}
|
||||
icon={
|
||||
item.startsWith('Instant')
|
||||
? 'bolt'
|
||||
: item.includes('form')
|
||||
? 'link'
|
||||
: 'enter'
|
||||
}
|
||||
>
|
||||
{item}
|
||||
</ListItem>
|
||||
)) : ""}
|
||||
{!partner
|
||||
? Object.entries({
|
||||
'Instant Google Workspace & email addresses': '',
|
||||
'Online, embeddable donation form': ''
|
||||
}).map(([item, date]) => (
|
||||
<ListItem
|
||||
key={item}
|
||||
icon={
|
||||
item.startsWith('Instant')
|
||||
? 'bolt'
|
||||
: item.includes('form')
|
||||
? 'link'
|
||||
: 'enter'
|
||||
}
|
||||
>
|
||||
{item}
|
||||
</ListItem>
|
||||
))
|
||||
: ''}
|
||||
</List>
|
||||
</Container>
|
||||
<Run />
|
||||
|
|
@ -119,8 +122,8 @@ export default function Everything({ fee, partner = false }) {
|
|||
hoverline
|
||||
>
|
||||
fiscal sponsor
|
||||
</Link>.
|
||||
Fiscal sponsorship fees typically vary between 7-14%
|
||||
</Link>
|
||||
. Fiscal sponsorship fees typically vary between 7-14%
|
||||
of revenue. Hack Club is a 501(c)(3) nonprofit.
|
||||
</Text>
|
||||
</Container>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,8 @@ export default function Features({ partner = false }) {
|
|||
<br />
|
||||
<br />
|
||||
<Text sx={{ color: 'muted', maxWidth: '48', fontSize: 28 }}>
|
||||
Invoice sponsors, issue debit cards to your team, and view transaction history.
|
||||
Invoice sponsors, issue debit cards to your team, and view transaction
|
||||
history.
|
||||
<br />
|
||||
Ongoing support so you can focus on organizing, not the paperwork.
|
||||
</Text>
|
||||
|
|
@ -81,6 +82,11 @@ export default function Features({ partner = false }) {
|
|||
name="Balance & history"
|
||||
body="Check real-time account balance + transaction history online anytime."
|
||||
/>
|
||||
<Module
|
||||
icon="bolt"
|
||||
name="Instant deposits"
|
||||
body="Receive donations and invoice payments instantly once they're paid."
|
||||
/>
|
||||
<Module
|
||||
icon="payment"
|
||||
name="Built-in invoicing"
|
||||
|
|
@ -171,24 +177,7 @@ export default function Features({ partner = false }) {
|
|||
body="We'll pay for your organization's domain name for 1 year."
|
||||
/>
|
||||
)}
|
||||
<Module
|
||||
icon="private-outline"
|
||||
name="1Password"
|
||||
body={
|
||||
<>
|
||||
$100 in free{' '}
|
||||
<Link
|
||||
href="https://1password.com/"
|
||||
color="smoke"
|
||||
hoverline
|
||||
target="_blank"
|
||||
>
|
||||
1Password
|
||||
</Link>{' '}
|
||||
credit to keep your team's passwords secure.
|
||||
</>
|
||||
}
|
||||
/>
|
||||
|
||||
<Module
|
||||
icon="support"
|
||||
name="Support anytime"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue