Skip to content

Commit d768414

Browse files
committed
Benefit access page
1 parent 94183af commit d768414

File tree

4 files changed

+133
-0
lines changed

4 files changed

+133
-0
lines changed

app/src/images/logos/orgs/SBNC.png

95.3 KB
Loading
4.52 KB
Loading
58 KB
Loading
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
import { Divider, Space } from '@mantine/core';
2+
import { CardsWithHeader } from '@/components/shared/static/CardsWithHeader';
3+
import PageHeader from '@/components/shared/static/PageHeader';
4+
import { TitleCardWithHeader } from '@/components/shared/static/TextCardWithHeader';
5+
import { colors } from '@/designTokens/colors';
6+
import benefit_nav_Icon from '@/images/logos/orgs/benefit_navigator.png';
7+
import myfriendbenIcon from '@/images/logos/orgs/myfriendben.png';
8+
import navvy_Icon from '@/images/logos/orgs/SBNC.png';
9+
10+
export default function BenefitAccessPage() {
11+
const handleButtonClick = (label: string) => {
12+
switch (label) {
13+
case 'Explore our API':
14+
window.open('https://policyengine.org/us/api', '_blank');
15+
break;
16+
case 'Contact us':
17+
window.location.href = 'mailto:[email protected]';
18+
break;
19+
default:
20+
console.log('Unknown button clicked');
21+
}
22+
};
23+
return (
24+
<>
25+
<PageHeader
26+
title="Benefit Access"
27+
description="Powering benefit eligibility screening tools through the PolicyEngine API"
28+
/>
29+
<Space mb={20} /> {}
30+
<TitleCardWithHeader
31+
title="Increasing access to public benefits"
32+
sections={[
33+
{
34+
body: (
35+
<>
36+
<p>
37+
PolicyEngine's tax-benefit engine and API power a range of benefit eligibility
38+
screening tools, helping people discover and access the support they're entitled
39+
to.
40+
</p>
41+
42+
<p>
43+
Our partners leverage PolicyEngine's computational capabilities to create
44+
user-friendly applications that simplify the complex landscape of public benefits
45+
programs, making it easier for individuals, families, and case workers to identify
46+
available assistance.
47+
</p>
48+
</>
49+
),
50+
},
51+
]}
52+
/>
53+
<Divider orientation="horizontal" size="xs" color={colors.border.dark} mt={60} mb={40} />
54+
<CardsWithHeader
55+
cards={[
56+
{
57+
title: 'MyFriendBen',
58+
description:
59+
'An open-source multi-benefit screener operating in Colorado, currently expanding to North Carolina and Massachusetts. MyFriendBen helps individuals quickly identify benefits they may qualify for through an accessible, user-friendly interface.',
60+
image:
61+
'https://www.myfriendben.org/wp-content/uploads/2024/08/MFB-National-Site-Triple-Phone-1024x844.png',
62+
icon: (
63+
<img src={myfriendbenIcon} alt="MyFriendBen" style={{ width: 130, height: 30 }} />
64+
),
65+
footerText: 'Visit Website →',
66+
tags: ['Colorado', 'North Carolina', 'Massachusetts'],
67+
},
68+
{
69+
title: 'Benefit Navigator',
70+
description:
71+
'A tool developed by IMAGINE LA to support case workers in Los Angeles County. Benefit Navigator helps social service providers quickly assess client eligibility for multiple benefit programs, streamlining the assistance process.',
72+
image:
73+
'https://images.squarespace-cdn.com/content/v1/5f6287b7ba52c722644c43c2/0938452b-fc33-483a-be9c-bc6ae1f98191/Screen+1.png?format=1500w',
74+
footerText: 'Visit Website →',
75+
icon: (
76+
<img
77+
src={benefit_nav_Icon}
78+
alt="Benefit Navigator"
79+
style={{ width: 130, height: 40 }}
80+
/>
81+
),
82+
tags: ['Los Angeles County'],
83+
},
84+
{
85+
title: 'Navvy',
86+
description:
87+
'A benefits screener developed by Impactica for the Student Basic Needs Coalition. Navvy helps students identify and access critical support services and benefits specifically designed for higher education students.',
88+
image:
89+
'https://static.wixstatic.com/media/bc112d_b0a5a365b2ec4fa587724e776fa99934~mv2.png/v1/crop/x_0,y_10,w_1436,h_1322/fill/w_832,h_766,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/unnamed-2_edited.png',
90+
footerText: 'Visit Website →',
91+
icon: <img src={navvy_Icon} alt="Navvy" style={{ width: 130, height: 30 }} />,
92+
tags: ['National (US)'],
93+
},
94+
]}
95+
containerTitle={''}
96+
/>
97+
<Divider orientation="horizontal" size="xs" color={colors.border.dark} mt={60} mb={40} />
98+
<TitleCardWithHeader
99+
title="Build your own benefit screening tool"
100+
sections={[
101+
{
102+
body: (
103+
<>
104+
<p>
105+
Are you interested in creating a benefit screening tool for your organization or
106+
community?
107+
</p>
108+
109+
<p>
110+
PolicyEngine's API provides accurate, up-to-date benefit calculations that can be
111+
integrated into your own applications.
112+
</p>
113+
114+
<p>Our API offers:</p>
115+
<ul>
116+
<li>
117+
Calculation of eligibility and benefit amounts for major US and UK tax and
118+
benefit programs
119+
</li>
120+
<li>Flexible integration options to fit your organization's needs</li>
121+
<li>Regularly updated policy parameters to reflect current legislation</li>
122+
<li>Technical support from our team</li>
123+
</ul>
124+
</>
125+
),
126+
},
127+
]}
128+
buttonLabel={['Explore our API', 'Contact us']}
129+
onButtonClick={handleButtonClick}
130+
/>
131+
</>
132+
);
133+
}

0 commit comments

Comments
 (0)