generated from cds-snc/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add links to insident handbook * bug fix: script hangs after first table created
- Loading branch information
1 parent
9689e8b
commit c8166cd
Showing
2 changed files
with
27 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,32 @@ | ||
import { Box } from "@mui/material"; | ||
import { Box, List, ListItem, ListItemButton, ListItemIcon, ListItemText, Typography } from "@mui/material"; | ||
import { Book } from "@mui/icons-material"; | ||
import Header from "../../components/Header"; | ||
|
||
|
||
const Faq = () => { | ||
return ( | ||
<Box m="20px"> | ||
<Box display="flex" justifyContent="space-between" alignItems="center"> | ||
<Header title="FAQ" subtitle="Frequently Asked Questions section."/> | ||
</Box> | ||
</Box> | ||
)}; | ||
<Box display="flex" justifyContent="space-between" alignItems="center"> | ||
<Header title="FAQ" subtitle="Frequently Asked Questions section." /> | ||
</Box> | ||
<Box> | ||
<Typography variant="h3">Incident Management</Typography> | ||
<List> | ||
<ListItemButton component="a" href="https://articles.alpha.canada.ca/cds-intranet-employee-guide/incident-management-handbook/incident-response-runbook/" target="_blank" rel="noopener noreferrer"> | ||
<ListItemIcon> | ||
<Book /> | ||
</ListItemIcon> | ||
<ListItemText primaryTypographyProps={{ variant: "h4" }} primary="Incident Response Runbook" /> | ||
</ListItemButton> | ||
<ListItemButton component="a" href="https://articles.alpha.canada.ca/cds-intranet-employee-guide/incident-management-handbook/" target="_blank" rel="noopener noreferrer" > | ||
<ListItemIcon> | ||
<Book /> | ||
</ListItemIcon> | ||
<ListItemText primaryTypographyProps={{ variant: "h4" }} primary="Incident Management Handbook" /> | ||
</ListItemButton> | ||
</List> | ||
</Box> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default Faq; |