Files
ax3Client/src/Constants/Copy/howToSteps.js
Kenneth Jannette f10b02478e more
2024-01-12 17:35:47 -06:00

47 lines
2.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ExclamationTriangle } from "react-bootstrap-icons";
export const Steps = () => (
<div className="steps-wrapper">
<h2 className="doc-header-text">Generate Discovery Responses</h2>
<ol className="steps-list">
<li>
Create the case to which the discovery request pertains. Click Cases
in the top navigation bar to go to the <strong>Case View</strong>. Click
the Create New Case button (lower right) to surface the{" "}
<strong>Create Case Modal</strong>. Enter all relevant information --
case name, case number, parties, etc. -- and click Save Case. The
modal will close, returning you to the <strong>Case View.</strong>
</li>
<li>
On the newly-created case info card, click the View button (far right)
to navigate to its <strong>Case Details View.</strong> Click Upload
Document to surface the <strong>Document Upload Modal</strong>.
</li>
<li>
On the <strong>Document Upload Modal</strong>, enter the document title,
i.e. Defendants Interrogatories, and (optionally) the date served.
Drag and drop or click to select the request document from your files.{" "}
<em>The document must be in .pdf format.</em>
<br /> Click Upload, and will you automatically navigate to the{" "}
<strong>Document List View</strong>. <br />{" "}
</li>
<li>
Click the Generate Responses'' button. Novdrafts intelliDraft AI will
generate the response and automatically navigate to the interactive{" "}
<strong>Document Editor</strong>. You can edit the responses and save
progress anytime by clicking the Save Changes button. When you are
satisfied, you can download a .docx file by clicking the Create .docx
File button.
</li>
<ExclamationTriangle
style={{ color: "red", marginRight: "6px", marginBottom: "2px" }}
/>
<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
search bar on your <strong>Dashboard</strong>, click "Express Document
Upload" and follow the prompts.
</ol>
<p className="steps-p"></p>
</div>
);