-
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
a2c7c05
commit c7f5ab6
Showing
2 changed files
with
104 additions
and
28 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
80 changes: 78 additions & 2 deletions
80
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 |
---|---|---|
@@ -1,3 +1,79 @@ | ||
import { Container } from '@mui/material'; | ||
import { Box, Container, Stack, Typography } from '@mui/material'; | ||
import { ProcessesColumnSVG } from '../../components/DPEDiagram.jsx'; | ||
import { | ||
BlueBox, | ||
DeterminantsInteractive, | ||
ImplementationFrameworkInteractive, | ||
ImplementationFrameworks, | ||
UpcomingOngoing | ||
} from '../TreatmentsServices.jsx'; | ||
|
||
export const HealthSystems = () => <Container></Container>; | ||
export const HealthSystems = () => ( | ||
<Container sx={{ mt: 3 }}> | ||
<Typography variant="h3">Treatment & Services</Typography> | ||
<Typography variant="h4" color="primary"> | ||
For Health Systems | ||
</Typography> | ||
<Stack gap={3} sx={{ mt: 3 }}> | ||
<p> | ||
RESTORE provides facilitation—an interactive problem-solving approach that supports organizations in applying | ||
evidence-based practices in routine care. | ||
</p> | ||
<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> | ||
<Typography variant="h4">Our Selected Implementation Science Frameworks</Typography> | ||
<Typography variant="h6">Implementation Determinants Framework</Typography> | ||
<Typography> | ||
We use the Health Equity Implementation Framework to understand determinants (barriers and facilitators) of PTSD | ||
treatment implementation in usual care settings. | ||
</Typography> | ||
<Box display="flex" alignContent="center" justifyContent="center"> | ||
<DeterminantsInteractive /> | ||
</Box> | ||
<Typography variant="h6">Implementation Process Framework</Typography> | ||
<Typography> | ||
We use a strategy called Implementation Facilitation—an interactive problem-solving approach—to support | ||
organizations in applying evidence-based practices in routine care. Selected Strategies: | ||
<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> | ||
<Typography variant="h6">Implementation Evaluation Framework</Typography> | ||
<Typography> | ||
We use Proctor’s Taxonomy of Outcomes, extended for Health Equity, to evaluate the effect of our strategies in | ||
achieving implementation success and health equity | ||
</Typography> | ||
<ImplementationFrameworkInteractive /> | ||
<UpcomingOngoing /> | ||
</Stack> | ||
</Container> | ||
); |