diff --git a/app/src/images/logos/orgs/SBNC.png b/app/src/images/logos/orgs/SBNC.png new file mode 100644 index 00000000..964bc696 Binary files /dev/null and b/app/src/images/logos/orgs/SBNC.png differ diff --git a/app/src/images/logos/orgs/benefit_navigator.png b/app/src/images/logos/orgs/benefit_navigator.png new file mode 100644 index 00000000..2efe21d4 Binary files /dev/null and b/app/src/images/logos/orgs/benefit_navigator.png differ diff --git a/app/src/pages/BenefitAccess.page.tsx b/app/src/pages/BenefitAccess.page.tsx new file mode 100644 index 00000000..c33bc59f --- /dev/null +++ b/app/src/pages/BenefitAccess.page.tsx @@ -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:hello@policyengine.org'; + }; + + 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 ( + <> + + + +

+ 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. +

+ +

+ 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. +

+ + ), + }, + ]} + /> + + + ), + 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: ( + Benefit Navigator + ), + 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: ( + Navvy + ), + onClick: () => window.open('https://www.navvy.org', '_blank'), + tags: ['National (US)'], + }, + ]} + containerTitle="Partner organizations" + /> + + +

+ Are you interested in creating a benefit screening tool for your organization or + community? +

+ +

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

+ +

Our API offers:

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