-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #2048
- Loading branch information
Showing
15 changed files
with
289 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import React from "react"; | ||
import Section from "../../layout/Section"; | ||
import ShowcaseItem from "../../layout/ShowcaseItem"; | ||
import style from "../../style"; | ||
import BenefitAccessImage from "../../images/home/benefit-access.png"; | ||
import EducationImage from "../../images/home/education.png"; | ||
import ArtificialIntelligenceImage from "../../images/home/artificial-intelligence.png"; | ||
import MicrosimulationModelImage from "../../images/home/microsimulation.png"; | ||
|
||
export default function HomeSolutions() { | ||
return ( | ||
<Section title="Our solutions" backgroundColor={style.colors.WHITE}> | ||
<ShowcaseItem | ||
title="Microsimulation model" | ||
description="Dive deep into the mechanics of our microsimulation model and understand how it works." | ||
linkTitle="Learn More" | ||
link="/solutions/microsimulation-model" | ||
image={MicrosimulationModelImage} | ||
altText="Microsimulation model" | ||
imageShrinkPercentage={20} | ||
/> | ||
<ShowcaseItem | ||
title="Benefit access" | ||
description="Streamline and simplify the process of accessing government benefits with our intuitive tools." | ||
linkTitle="Learn More" | ||
link="/solutions/benefit-access" | ||
image={BenefitAccessImage} | ||
altText="Benefit access" | ||
imageShrinkPercentage={20} | ||
/> | ||
<ShowcaseItem | ||
title="Education" | ||
description="Empowering educators to bring economic policy lessons to life." | ||
linkTitle="Learn More" | ||
link="/solutions/education" | ||
image={EducationImage} | ||
altText="Education" | ||
imageShrinkPercentage={20} | ||
/> | ||
<ShowcaseItem | ||
title="Artificial intelligence" | ||
description="Harness the power of AI to explain results of sophisticated economic models in plain language." | ||
linkTitle="Learn More" | ||
link="/solutions/artificial-intelligence" | ||
image={ArtificialIntelligenceImage} | ||
altText="Artificial intelligence" | ||
imageShrinkPercentage={20} | ||
/> | ||
</Section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from "react"; | ||
|
||
export default function ArtificialIntelligence() { | ||
return ( | ||
<div> | ||
<h1>Benefit Access</h1> | ||
<p>Details about Benefit Access solution...</p> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from "react"; | ||
|
||
export default function BenefitAccess() { | ||
return ( | ||
<div> | ||
<h1>Benefit Access</h1> | ||
<p>Details about Benefit Access solution...</p> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from "react"; | ||
|
||
export default function Education() { | ||
return ( | ||
<div> | ||
<h1>Benefit Access</h1> | ||
<p>Details about Benefit Access solution...</p> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.