Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added app/src/images/logos/orgs/SBNC.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/images/logos/orgs/benefit_navigator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
157 changes: 157 additions & 0 deletions app/src/pages/BenefitAccess.page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
import { useNavigate } from 'react-router-dom';
import { Divider, Space } from '@mantine/core';
import { CardsWithHeader } from '@/components/shared/static/CardsWithHeader';
import PageHeader from '@/components/shared/static/PageHeader';
import { TitleCardWithHeader } from '@/components/shared/static/TextCardWithHeader';
import { colors } from '@/designTokens/colors';
import benefit_nav_Icon from '@/images/logos/orgs/benefit_navigator.png';
import myfriendbenIcon from '@/images/logos/orgs/myfriendben.png';
import navvy_Icon from '@/images/logos/orgs/SBNC.png';

export default function BenefitAccessPage() {
const navigate = useNavigate();
const handleExploreAPI = () => {
navigate('/us/api');
};

const handleContactUs = () => {
window.location.href = 'mailto:[email protected]';
};

const handleAboutPage = () => {
navigate('/about');
};

const handleButtonClick = (label: string) => {
if (label === 'Explore our API') {
handleExploreAPI();
} else if (label === 'Contact us') {
handleContactUs();
} else if (label === 'Learn more about PolicyEngine') {
handleAboutPage();
}
};
return (
<>
<PageHeader
title="Benefit Access"
description="Powering benefit eligibility screening tools through the PolicyEngine API"
/>
<Space mb={20} />
<TitleCardWithHeader
title="Increasing access to public benefits"
sections={[
{
body: (
<>
<p>
PolicyEngine's tax-benefit engine and API power a range of benefit eligibility
screening tools, helping people discover and access the support they're entitled
to.
</p>

<p>
Our partners leverage PolicyEngine's computational capabilities to create
user-friendly applications that simplify the complex landscape of public benefits
programs, making it easier for individuals, families, and case workers to identify
available assistance.
</p>
</>
),
},
]}
/>
<Divider orientation="horizontal" size="xs" color={colors.border.dark} mt={60} mb={40} />
<CardsWithHeader
cards={[
{
title: 'MyFriendBen',
description:
'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.',
image:
'https://www.myfriendben.org/wp-content/uploads/2024/08/MFB-National-Site-Triple-Phone-1024x844.png',
icon: (
<img
src={myfriendbenIcon}
alt="MyFriendBen"
style={{ maxWidth: 150, maxHeight: 40, objectFit: 'contain' }}
/>
),
footerText: 'Visit Website →',
onClick: () => window.open('https://www.myfriendben.org', '_blank'),
tags: ['Colorado', 'North Carolina', 'Massachusetts'],
},
{
title: 'Benefit Navigator',
description:
'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.',
image:
'https://images.squarespace-cdn.com/content/v1/5f6287b7ba52c722644c43c2/0938452b-fc33-483a-be9c-bc6ae1f98191/Screen+1.png?format=1500w',
footerText: 'Visit Website →',
icon: (
<img
src={benefit_nav_Icon}
alt="Benefit Navigator"
style={{ maxWidth: 150, maxHeight: 40, objectFit: 'contain' }}
/>
),
onClick: () => window.open('https://www.benefitnavigator.org', '_blank'),
tags: ['Los Angeles County'],
},
{
title: 'Navvy',
description:
'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.',
image:
'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',
footerText: 'Visit Website →',
icon: (
<img
src={navvy_Icon}
alt="Navvy"
style={{ maxWidth: 150, maxHeight: 40, objectFit: 'contain' }}
/>
),
onClick: () => window.open('https://www.navvy.org', '_blank'),
tags: ['National (US)'],
},
]}
containerTitle="Partner organizations"
/>
<Divider orientation="horizontal" size="xs" color={colors.border.dark} mt={60} mb={40} />
<TitleCardWithHeader
title="Build your own benefit screening tool"
sections={[
{
body: (
<>
<p>
Are you interested in creating a benefit screening tool for your organization or
community?
</p>

<p>
PolicyEngine's API provides accurate, up-to-date benefit calculations that can be
integrated into your own applications.
</p>

<p>Our API offers:</p>
<ul>
<li>
Calculation of eligibility and benefit amounts for major US and UK tax and
benefit programs
</li>
<li>Flexible integration options to fit your organization's needs</li>
<li>Regularly updated policy parameters to reflect current legislation</li>
<li>Technical support from our team</li>
</ul>
</>
),
},
]}
buttonLabel={['Explore our API', 'Contact us']}
onButtonClick={handleButtonClick}
/>
</>
);
}
Loading