-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-cancer-frontend
- Loading branch information
Showing
15 changed files
with
224 additions
and
195 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
80 changes: 47 additions & 33 deletions
80
frontend/src/pages/Policy/policyContent/CrisisOverviewContent.tsx
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 |
---|---|---|
@@ -1,40 +1,54 @@ | ||
import HetTermUnderline from '../../../styles/HetComponents/HetTermUnderline' | ||
|
||
export const gvaFacts = [ | ||
{ | ||
content: ( | ||
<> | ||
In 2023, Atlanta experienced <HetTermUnderline>no fewer than six mass shootings</HetTermUnderline>, with each | ||
event tragically claiming six lives and injuring 22 others, marking a | ||
series of deliberate, targeted attacks that shook the community. | ||
</> | ||
), | ||
}, | ||
{ | ||
content: ( | ||
<> | ||
In 2023, Atlanta experienced{' '} | ||
<HetTermUnderline>no fewer than six mass shootings</HetTermUnderline>, | ||
with each event tragically claiming six lives and injuring 22 others, | ||
marking a series of deliberate, targeted attacks that shook the | ||
community. | ||
</> | ||
), | ||
}, | ||
|
||
{ | ||
content: ( | ||
<> | ||
As of April 2024, firearms have injured four children in Atlanta, | ||
raising the total to <HetTermUnderline>53 children injured</HetTermUnderline> since 2021, | ||
underscoring an urgent need for protective measures. | ||
</> | ||
), | ||
}, | ||
{ | ||
content: ( | ||
<> | ||
As of April 2024, firearms have injured four children in Atlanta, | ||
raising the total to{' '} | ||
<HetTermUnderline>53 children injured</HetTermUnderline> since 2021, | ||
underscoring an urgent need for protective measures. | ||
</> | ||
), | ||
}, | ||
] | ||
|
||
export const rocketFoundationFacts = [ | ||
{ | ||
content: ( | ||
<> | ||
Gun violence in the U.S. is a growing crisis, claiming over 47,000 lives in 2021 alone, with <HetTermUnderline>more than half being homicides</HetTermUnderline>. This epidemic disproportionately affects people of color, women, and children, making guns the leading cause of death among American youth. | ||
</> | ||
), | ||
}, | ||
{ | ||
content: ( | ||
<> | ||
While the U.S. has an alarmingly high rate of gun-related homicides—22 times higher than in the European Union—<HetTermUnderline>this violence is concentrated in specific neighborhoods</HetTermUnderline>. By focusing our efforts on these areas, we can begin to solve the crisis one city at a time, starting with <HetTermUnderline>places like Atlanta</HetTermUnderline>. | ||
</> | ||
), | ||
}, | ||
] | ||
{ | ||
content: ( | ||
<> | ||
Gun violence in the U.S. is a growing crisis, claiming over 47,000 lives | ||
in 2021 alone, with{' '} | ||
<HetTermUnderline>more than half being homicides</HetTermUnderline>. | ||
This epidemic disproportionately affects people of color, women, and | ||
children, making guns the leading cause of death among American youth. | ||
</> | ||
), | ||
}, | ||
{ | ||
content: ( | ||
<> | ||
While the U.S. has an alarmingly high rate of gun-related homicides—22 | ||
times higher than in the European Union— | ||
<HetTermUnderline> | ||
this violence is concentrated in specific neighborhoods | ||
</HetTermUnderline> | ||
. By focusing our efforts on these areas, we can begin to solve the | ||
crisis one city at a time, starting with{' '} | ||
<HetTermUnderline>places like Atlanta</HetTermUnderline>. | ||
</> | ||
), | ||
}, | ||
] |
Oops, something went wrong.