From 110dfae131843680b1ecc45f566785a332b98912 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Wed, 31 Jan 2024 22:11:16 -0600 Subject: [PATCH 1/4] more --- src/Components/HowTo/HowToPage.js | 23 ++++---- src/Constants/Copy/howToSteps.js | 71 +++++++++++++---------- src/styles/howTo-page.scss | 94 ++++++++++--------------------- 3 files changed, 84 insertions(+), 104 deletions(-) diff --git a/src/Components/HowTo/HowToPage.js b/src/Components/HowTo/HowToPage.js index 057515e..e87ac98 100644 --- a/src/Components/HowTo/HowToPage.js +++ b/src/Components/HowTo/HowToPage.js @@ -3,7 +3,7 @@ import { AppContext } from "../../Hooks/useContext/appContext"; import { Steps } from "../../Constants/Copy/howToSteps.js"; import "../../styles/howTo-page.scss"; -import { ReactComponent as HowToInfoSvg } from "../../Assets/svg/howToInfo.svg"; +import howto from "../../Assets/Images/howto.png"; const HowToPage = () => { const { appState } = useContext(AppContext); @@ -13,18 +13,21 @@ const HowToPage = () => { return ( <> -
-
-
- -
-
-
- -
+
+
); }; export default HowToPage; + +/* +
+ +
+
+ +
+ + */ diff --git a/src/Constants/Copy/howToSteps.js b/src/Constants/Copy/howToSteps.js index b6778b5..4f289d5 100644 --- a/src/Constants/Copy/howToSteps.js +++ b/src/Constants/Copy/howToSteps.js @@ -1,46 +1,55 @@ import { ExclamationTriangle } from "react-bootstrap-icons"; - +import howtohand from "../../Assets/Images/howtohand.png"; +import "../../styles/howTo-page.scss"; export const Steps = () => (
-

Generate Discovery Responses

-
    -
  1. - CREATE THE CASE: Click “Cases” in 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 - relevant information -- case name, case number, parties, etc. -- and - click “Save Case” to open the new case's - Details View. Click “Upload Document”. -
  2. -
  3. - UPLOAD YOUR DOCUMENT: You will now see the Document - Upload Modal. Enter your discovery request's info: document title, i.e. - “Defendant’s Interrogatories,” and (optionally) the date served. Drag - and drop the file, or click to select it from your computer's files,{" "} - {" "} - then click “Upload”. -
    The upload will begin. Parsing the document usually takes 1 to 2 - minutes, but be patient - it may take up to 5. -
  4. -
  5. +
    +

    Generate Discovery Responses

    +
    +
    +
    +
    + CREATE THE CASE: Click “Cases” in 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 + relevant information -- case name, case number, parties, etc. -- and + click “Save Case” to open the new case's + Details View. Click “Upload Document”. +
    +
    + UPLOAD YOUR DOCUMENT: You will now see the Document + Upload Modal. Enter your discovery request's info: document title, + i.e. “Defendant’s Interrogatories,” and (optionally) the date served. + Drag and drop the file, or click to select it from your computer's + files, {" "} + then click “Upload”. +
    The upload will begin. Parsing the document usually takes under + 2 minutes, but be patient - it may take up to 5. +
    +
    +
    + +
    +
    +
    +
    GENERATE THE RESPONSE: From the Document List View, click the “Generate Responses'' button. Novdraft’s Intellidraft AI will generate the response and automatically navigate to the interactive Document Editor. You can edit the responses and save progress any time by clicking the “Save Changes” button. -
  6. -
  7. +
+
DOWNLOAD YOUR RESPONSE DOCUMENT: Click the “Create .Docx' button to download your fully-formatted, ready-to-serve response. - +
- Pro tip: Once you've created the case, you can skip step - one. Simply search for the case by entering the case number in the search - bar on your Dashboard, click "Express Document Upload" and follow the - prompts. - -

+ Pro tip: Once you've created the case, + you can skip step one. Simply search for the case by entering the case + number in the search bar on your Dashboard, click "Express Document + Upload" and follow the prompts. +
); diff --git a/src/styles/howTo-page.scss b/src/styles/howTo-page.scss index d211fe0..dc66bfb 100644 --- a/src/styles/howTo-page.scss +++ b/src/styles/howTo-page.scss @@ -23,67 +23,35 @@ font-weight: 500; } -.how-to-info-container { - .how-to-info-wrapper { - margin-top: 20px; - display: flex; - align-items: center; - justify-content: center; - } - - .how-to-image-wrapper { - display: flex; - max-width: 1100px; - height: 100%; - background-color: var(--haq-blue); //#e6e6e653; - border-radius: 10px; - align-items: center; - justify-content: center; - border-radius: 20px; - } - - .how-to-info-svg { - padding: 30px 30px; - width: 80%; - height: 0%; - border-radius: 40px; - } - - .how-to-steps-container { - margin: 5px 20px; - } - .steps-wrapper { - display: flex; - flex-direction: column; - margin: 25px 0px; - background-color: #e6e6e653; - border-radius: 10px; - padding: 16px 38px 16px 25px; - text-align: justify; - - strong { - font-weight: 500; - } - ol { - li { - margin-bottom: 14px; - } - } - - .doc-header-text { - margin-bottom: 16px !important; - margin-left: 0px; - letter-spacing: -0.6px; - font-weight: 400; - } - - .steps-p { - margin-bottom: 14px; - padding: 0px 14px; - } - - .howto-special-para { - margin-top: 6px; - } - } +.steps-wrapper { + display: flex; + flex-direction: column; + width: 100%; +} + +.fooze { + display: flex; + flex-direction: row; +} + +.steps-upper-right { + display: flex; + flex-direction: column; + + width: 50%; +} + +.steps-upper-left { + display: flex; + flex-direction: column; + + width: 50%; +} + +.howto-hand-img { + width: 420px; +} + +.bold-span { + font-weight: 500; } From 78c091c1e01b430b1628cab969393b683b6a33bc Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Wed, 31 Jan 2024 22:30:37 -0600 Subject: [PATCH 2/4] more --- src/Constants/Copy/howToSteps.js | 51 ++++++++++++++++++-------------- src/styles/howTo-page.scss | 27 +++++++++++++++-- 2 files changed, 53 insertions(+), 25 deletions(-) diff --git a/src/Constants/Copy/howToSteps.js b/src/Constants/Copy/howToSteps.js index 4f289d5..a28946a 100644 --- a/src/Constants/Copy/howToSteps.js +++ b/src/Constants/Copy/howToSteps.js @@ -3,45 +3,50 @@ import howtohand from "../../Assets/Images/howtohand.png"; import "../../styles/howTo-page.scss"; export const Steps = () => (
-
+

Generate Discovery Responses

-
- CREATE THE CASE: Click “Cases” in 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 - relevant information -- case name, case number, parties, etc. -- and - click “Save Case” to open the new case's - Details View. Click “Upload Document”. +
+ CREATE THE CASE: Click “Cases” in + the top navigation bar to go to the Case View. Click the “Create New + Case” button (lower right) to surface the Create Case Modal. Follow + prompts to relevant information. You will end with the Case Details + View. Click “Upload Document”.
-
- UPLOAD YOUR DOCUMENT: You will now see the Document - Upload Modal. Enter your discovery request's info: document title, - i.e. “Defendant’s Interrogatories,” and (optionally) the date served. - Drag and drop the file, or click to select it from your computer's - files, {" "} - then click “Upload”. +
+ UPLOAD YOUR DOCUMENT: You will now + see the Document Upload Modal. Enter your discovery request's info: + document title, i.e. “Defendant’s Interrogatories,” and (optionally) + the date served. Drag and drop the file, or click to select it from + your computer's files, {" "} + then click “Upload”.
The upload will begin. Parsing the document usually takes under 2 minutes, but be patient - it may take up to 5.
- +
+
+
+ +
+
- GENERATE THE RESPONSE: From the Document List View, - click the “Generate Responses'' button. Novdraft’s Intellidraft AI will - generate the response and automatically navigate to the interactive - Document Editor. You can edit the responses and save progress any time - by clicking the “Save Changes” button. + GENERATE THE RESPONSE: From the + Document List View, click the “Generate Responses'' button. Novdraft’s + Intellidraft AI will generate the response and automatically navigate to + the interactive Document Editor. You can edit the responses and save + progress any time by clicking the “Save Changes” button.
- DOWNLOAD YOUR RESPONSE DOCUMENT: Click the “Create - .Docx' button to download your fully-formatted, ready-to-serve response. + DOWNLOAD YOUR RESPONSE DOCUMENT: + Click the “Create .Docx' button to download your fully-formatted, + ready-to-serve response.
Date: Wed, 31 Jan 2024 22:36:13 -0600 Subject: [PATCH 3/4] more --- src/Constants/Copy/howToSteps.js | 18 +++++++++++------- src/styles/howTo-page.scss | 3 +++ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/Constants/Copy/howToSteps.js b/src/Constants/Copy/howToSteps.js index a28946a..3061fd2 100644 --- a/src/Constants/Copy/howToSteps.js +++ b/src/Constants/Copy/howToSteps.js @@ -17,13 +17,17 @@ export const Steps = () => (
UPLOAD YOUR DOCUMENT: You will now - see the Document Upload Modal. Enter your discovery request's info: - document title, i.e. “Defendant’s Interrogatories,” and (optionally) - the date served. Drag and drop the file, or click to select it from - your computer's files, {" "} - then click “Upload”. -
The upload will begin. Parsing the document usually takes under - 2 minutes, but be patient - it may take up to 5. + see the Document Upload Modal. Enter the discovery request's title, + i.e. “Defendant’s Interrogatories,” and (optionally) the date served. + Drag and drop or click and select the .pdf from your computer's files,{" "} + {" "} +
+ Click “Upload”. +
+
+ Parsing the document usually takes under 2 minutes, but be patient - + it may take up to 5. +
diff --git a/src/styles/howTo-page.scss b/src/styles/howTo-page.scss index f9b7921..849b215 100644 --- a/src/styles/howTo-page.scss +++ b/src/styles/howTo-page.scss @@ -64,6 +64,9 @@ width: 12%; } +.mini-break { + margin: 8px 0px; +} .image-moun { display: flex; flex-direction: column; From efdeab829a7a76ad227810d16fdd201828f42553 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Wed, 31 Jan 2024 22:47:11 -0600 Subject: [PATCH 4/4] more --- src/Constants/Copy/howToSteps.js | 13 ++++++------- src/styles/howTo-page.scss | 9 +++++++++ 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/Constants/Copy/howToSteps.js b/src/Constants/Copy/howToSteps.js index 3061fd2..30324de 100644 --- a/src/Constants/Copy/howToSteps.js +++ b/src/Constants/Copy/howToSteps.js @@ -10,17 +10,16 @@ export const Steps = () => (
CREATE THE CASE: Click “Cases” in - the top navigation bar to go to the Case View. Click the “Create New - Case” button (lower right) to surface the Create Case Modal. Follow - prompts to relevant information. You will end with the Case Details + the top navigation bar to go to the Case View. Click “Create New Case” + (lower right button) to surface the Create Case Modal. Follow prompts + to enter relevant information. You will end with the Case's Details View. Click “Upload Document”.
UPLOAD YOUR DOCUMENT: You will now see the Document Upload Modal. Enter the discovery request's title, i.e. “Defendant’s Interrogatories,” and (optionally) the date served. - Drag and drop or click and select the .pdf from your computer's files,{" "} - {" "} + Drag and drop, or click and select the .pdf from your files. {" "}
Click “Upload”.
@@ -40,14 +39,14 @@ export const Steps = () => (
-
+
GENERATE THE RESPONSE: From the Document List View, click the “Generate Responses'' button. Novdraft’s Intellidraft AI will generate the response and automatically navigate to the interactive Document Editor. You can edit the responses and save progress any time by clicking the “Save Changes” button.
-
+
DOWNLOAD YOUR RESPONSE DOCUMENT: Click the “Create .Docx' button to download your fully-formatted, ready-to-serve response. diff --git a/src/styles/howTo-page.scss b/src/styles/howTo-page.scss index 849b215..1afd226 100644 --- a/src/styles/howTo-page.scss +++ b/src/styles/howTo-page.scss @@ -27,6 +27,9 @@ display: flex; flex-direction: column; width: 100%; + padding: 0px 10px; + background-color: #e6e6e653; + border-radius: 10px; } .steps-text-wrapper { @@ -67,6 +70,7 @@ .mini-break { margin: 8px 0px; } + .image-moun { display: flex; flex-direction: column; @@ -81,3 +85,8 @@ .bold-span { font-weight: 500; } + +.barzee { + padding-right: 20px; + margin-top: -12px; +}