This commit is contained in:
Kenneth Jannette
2024-01-31 22:30:37 -06:00
parent 110dfae131
commit 78c091c1e0
2 changed files with 53 additions and 25 deletions

View File

@@ -3,45 +3,50 @@ import howtohand from "../../Assets/Images/howtohand.png";
import "../../styles/howTo-page.scss"; import "../../styles/howTo-page.scss";
export const Steps = () => ( export const Steps = () => (
<div className="steps-wrapper"> <div className="steps-wrapper">
<div> <div className="steps-text-wrapper">
<h2 className="doc-header-text">Generate Discovery Responses</h2> <h2 className="doc-header-text">Generate Discovery Responses</h2>
</div> </div>
<div className="fooze"> <div className="fooze">
<div className="steps-upper-left"> <div className="steps-upper-left">
<div> <div className="steps-text-wrapper">
<strong>CREATE THE CASE: </strong> Click Cases in the top navigation <span className="bold-span">CREATE THE CASE: </span> Click Cases in
bar to go to the <strong>Case View</strong>. Click the Create New the top navigation bar to go to the Case View. Click the Create New
Case button (lower right) to surface the Create Case Modal. Enter all Case button (lower right) to surface the Create Case Modal. Follow
relevant information -- case name, case number, parties, etc. -- and prompts to relevant information. You will end with the Case Details
click Save Case to open the new case's View. Click Upload Document.
<strong> Details View.</strong> Click “Upload Document”.
</div> </div>
<div> <div className="steps-text-wrapper">
<strong>UPLOAD YOUR DOCUMENT: </strong>You will now see the Document <span className="bold-span">UPLOAD YOUR DOCUMENT: </span>You will now
Upload Modal. Enter your discovery request's info: document title, see the Document Upload Modal. Enter your discovery request's info:
i.e. Defendants Interrogatories, and (optionally) the date served. document title, i.e. “Defendants Interrogatories,” and (optionally)
Drag and drop the file, or click to select it from your computer's the date served. Drag and drop the file, or click to select it from
files, {" "} your computer's files, {" "}
then click <strong> “Upload”.</strong> then click <span className="bold-span"> Upload.</span>
<br /> The upload will begin. Parsing the document usually takes under <br /> The upload will begin. Parsing the document usually takes under
2 minutes, but be patient - it may take up to 5. 2 minutes, but be patient - it may take up to 5.
</div> </div>
</div> </div>
<div className="steps-upper-right"> <div className="steps-upper-right">
<div className="image-right-one">
<div className="image-jhon"></div>
<div className="image-moun">
<img src={howtohand} className="howto-hand-img"></img> <img src={howtohand} className="howto-hand-img"></img>
</div> </div>
</div> </div>
</div>
</div>
<div className="barzee"> <div className="barzee">
<div> <div>
<strong>GENERATE THE RESPONSE: </strong>From the Document List View, <span className="bold-span">GENERATE THE RESPONSE: </span>From the
click the “Generate Responses'' button. Novdrafts Intellidraft AI will Document List View, click the Generate Responses'' button. Novdrafts
generate the response and automatically navigate to the interactive Intellidraft AI will generate the response and automatically navigate to
Document Editor. You can edit the responses and save progress any time the interactive Document Editor. You can edit the responses and save
by clicking the “Save Changesbutton. progress any time by clicking the Save Changes button.
</div> </div>
<div> <div>
<strong>DOWNLOAD YOUR RESPONSE DOCUMENT: </strong>Click the “Create <span className="bold-span">DOWNLOAD YOUR RESPONSE DOCUMENT: </span>
.Docx' button to download your fully-formatted, ready-to-serve response. Click the Create .Docx' button to download your fully-formatted,
ready-to-serve response.
</div> </div>
<ExclamationTriangle <ExclamationTriangle
style={{ color: "red", marginRight: "6px", marginBottom: "2px" }} style={{ color: "red", marginRight: "6px", marginBottom: "2px" }}

View File

@@ -29,6 +29,12 @@
width: 100%; width: 100%;
} }
.steps-text-wrapper {
margin-bottom: 14px;
padding: 6px;
text-align: justify;
}
.fooze { .fooze {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@@ -44,12 +50,29 @@
.steps-upper-left { .steps-upper-left {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 50%; width: 50%;
} }
.image-right-one {
display: flex;
flex-direction: row;
}
.image-jhon {
display: flex;
flex-direction: column;
width: 12%;
}
.image-moun {
display: flex;
flex-direction: column;
width: 80%;
}
.howto-hand-img { .howto-hand-img {
width: 420px; border-radius: 10px;
width: 424px;
} }
.bold-span { .bold-span {