This commit is contained in:
Kenneth Jannette
2024-01-12 17:35:47 -06:00
parent e49f94d7d4
commit f10b02478e
2 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import { useContext } from "react"; import { useContext } from "react";
import { AppContext } from "../../Hooks/useContext/appContext"; import { AppContext } from "../../Hooks/useContext/appContext";
import { Steps } from "../../Constants/Copy/howToSteps.js"; import { Steps } from "../../Constants/Copy/howToSteps.js";
import "../../styles/howTo-page.scss"; import "../../styles/howTo-page.scss";
import { ReactComponent as HowToInfoSvg } from "../../Assets/svg/howToInfo.svg"; import { ReactComponent as HowToInfoSvg } from "../../Assets/svg/howToInfo.svg";

View File

@@ -1,3 +1,5 @@
import { ExclamationTriangle } from "react-bootstrap-icons";
export const Steps = () => ( export const Steps = () => (
<div className="steps-wrapper"> <div className="steps-wrapper">
<h2 className="doc-header-text">Generate Discovery Responses</h2> <h2 className="doc-header-text">Generate Discovery Responses</h2>
@@ -31,10 +33,13 @@ export const Steps = () => (
satisfied, you can download a .docx file by clicking the Create .docx satisfied, you can download a .docx file by clicking the Create .docx
File button. File button.
</li> </li>
<ExclamationTriangle
style={{ color: "red", marginRight: "6px", marginBottom: "2px" }}
/>
<strong>Pro tip:</strong> once you've created a case, you can skip most of <strong>Pro tip:</strong> once you've created a case, you can skip most of
these steps. Simply search for the case by entering the case number in the these steps. Simply search for the case by entering the case number in the
search bar on your Dashboard, and click "Express Document Upload" and search bar on your <strong>Dashboard</strong>, click "Express Document
follow the prompts. Upload" and follow the prompts.
</ol> </ol>
<p className="steps-p"></p> <p className="steps-p"></p>
</div> </div>