-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98d23fd
commit b419e5f
Showing
5 changed files
with
72 additions
and
42 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
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
3 changes: 3 additions & 0 deletions
3
packages/client/src/pages/treatment-services/health-systems.jsx
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,3 @@ | ||
import { Card, CardActionArea, CardContent, CardHeader, Container, Grid, Typography } from '@mui/material'; | ||
|
||
export const HealthSystems = () => <Container></Container>; |
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,3 @@ | ||
import { Card, CardActionArea, CardContent, CardHeader, Container, Grid, Typography } from '@mui/material'; | ||
|
||
export const Patients = () => <Container></Container>; |
52 changes: 52 additions & 0 deletions
52
packages/client/src/pages/treatment-services/providers.jsx
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,52 @@ | ||
import { Container, Stack, Typography } from '@mui/material'; | ||
import { UpcomingOngoing } from '../TreatmentsServices.jsx'; | ||
|
||
export const Providers = () => ( | ||
<Container> | ||
<Typography variant="h3">Treatment & Services</Typography> | ||
<Typography variant="h4" color="primary"> | ||
For Providers | ||
</Typography> | ||
<Typography variant="infoPanelBBody"> | ||
<p> | ||
RESTORE provides facilitation—an interactive problem-solving approach that supports organizations in applying | ||
evidence-based practices in routine care. | ||
</p> | ||
<p>RESTORE’s selected facilitation strategies:</p> | ||
<ul> | ||
<li>Training and consultation initiatives</li> | ||
<li>Consultation to clinical and community partners on implementation planning</li> | ||
<li>Organize local change agents in leadership and clinician expertise</li> | ||
<li> | ||
Build reciprocal and participatory relationship with clinician teams to foster a shared vision and priorities | ||
</li> | ||
<li> | ||
Promote structural change to support implementation with screening, identification, and referral pathways | ||
across the system | ||
</li> | ||
<li>Convene community, patient, provider, and external advisory boards on PTSD and oppression-based stress</li> | ||
<li>Support data-driven intervention adaptation, including cultural adaptation</li> | ||
<li>Administrative and technical support through imbedded online flowsheets and templates</li> | ||
</ul> | ||
</Typography> | ||
<Stack gap={3}> | ||
<Typography variant="h4" color="primary"> | ||
Commitment to Health Equity | ||
</Typography> | ||
<Typography> | ||
We believe that access to high quality and culturally responsive care is a fundamental part of achieving health | ||
equity. | ||
</Typography> | ||
<Typography>Four implementation science principles guide our work in advancing health equity.</Typography> | ||
<Typography> | ||
<ol> | ||
<li>Racism is a fundamental driver of health inequities</li> | ||
<li>Equitable healthcare requires active engagement of community members</li> | ||
<li>Equitable healthcare requires multisector partnerships</li> | ||
<li>Context is central to healthcare equity</li> | ||
</ol> | ||
</Typography> | ||
</Stack> | ||
<UpcomingOngoing /> | ||
</Container> | ||
); |