Merge pull request #134 from kjannette/plaid2

Plaid2
This commit is contained in:
S Jannette
2024-03-06 22:30:32 -06:00
committed by GitHub
2 changed files with 35 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
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, OutgoingSteps } from "../../Constants/Copy/howToSteps.js";
import "../../styles/howTo-page.scss"; import "../../styles/howTo-page.scss";
const HowToPage = () => { const HowToPage = () => {
@@ -13,6 +13,7 @@ const HowToPage = () => {
<> <>
<div> <div>
<Steps /> <Steps />
<OutgoingSteps />
</div> </div>
</> </>
); );

View File

@@ -71,13 +71,40 @@ export const Steps = () => (
the search bar on your Dashboard, click "Express Document Upload" and the search bar on your Dashboard, click "Express Document Upload" and
follow the prompts. follow the prompts.
</div> </div>
</div>
</div>
);
export const OutgoingSteps = () => (
<div className="steps-wrapper">
<div className="steps-text-wrapper">
<h2 className="doc-header-text">Generate Discovery Requests</h2>
</div>
<div className="barzee">
<div className="steps-text-wrapper"> <div className="steps-text-wrapper">
<ExclamationTriangle If you have not yet done so, follow the steps described above in "CREATE
style={{ color: "orange", marginRight: "6px", marginBottom: "4px" }} THE CASE". From the Case Details view, click the "Upload Document"
/> button to surface the document upload modal.
<span className="bold-span">Discovery requests:</span> This feature will </div>
launch spring of '24. We're working hard to bring you the best possible <div className="steps-text-wrapper">
experience! <span className="bold-span">UPLOAD THE COMPLAINT: </span> Drag and drop,
or click and select the Complaint .pdf from your files. Be sure to
select "Complaint" in the document type section (see image right).
</div>
<div className="steps-text-wrapper">
<span className="bold-span">GENERATE THE RESPONSE: </span>Click
"Upload."Novdrafts Intellidraft AI will generate the response and
automatically navigate to the interactive Document Editor. You may now
edit the responses if you prefer. Note: at this time, Novodraft supports
generation of combined interrogatories and requests for production of
documents. Additional discovery request types (i.e. requests for
admissions, stand-alone interrogatories) as well as more fine-grained
request generation configurations will be added week by week.
</div>
<div className="steps-text-wrapper">
<span className="bold-span">DOWNLOAD YOUR RESPONSE DOCUMENT: </span>
Click the Create .Docx' button to download your fully-formatted,
ready-to-serve response.
</div> </div>
</div> </div>
</div> </div>