From 07c0ed6b722b12d5e8d1a3a1c34518e261cced2a Mon Sep 17 00:00:00 2001 From: Ajay_S Date: Tue, 26 Apr 2022 15:54:51 +0530 Subject: [PATCH] styled closing Docs verified component --- src/App.tsx | 4 ++ src/pages/closingDocs/ClosingDocs.module.scss | 3 +- src/pages/closingDocs/ClosingDocs.tsx | 5 +- .../closingDocs/VerifiedDocs.module.scss | 71 +++++++++++++++++++ src/pages/closingDocs/VerifiedDocs.tsx | 34 +++++++++ src/pages/interviewRounds/InterviewRounds.tsx | 8 +-- 6 files changed, 116 insertions(+), 9 deletions(-) create mode 100644 src/pages/closingDocs/VerifiedDocs.module.scss create mode 100644 src/pages/closingDocs/VerifiedDocs.tsx diff --git a/src/App.tsx b/src/App.tsx index 93260d5..9ee66ba 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -34,6 +34,7 @@ import AssignmentCompleted from './pages/assignment/AssignmentCompleted'; import FinalInterview from './pages/FinalInterview/FinalInterview'; import FinalInterviewResult from './pages/FinalInterview/FinalInterviewResult'; import ClosingDocs from './pages/closingDocs/ClosingDocs'; +import VerifiedDocs from './pages/closingDocs/VerifiedDocs'; @@ -85,6 +86,9 @@ const App: React.FC = () => ( + + + diff --git a/src/pages/closingDocs/ClosingDocs.module.scss b/src/pages/closingDocs/ClosingDocs.module.scss index fc5bf76..6664b90 100644 --- a/src/pages/closingDocs/ClosingDocs.module.scss +++ b/src/pages/closingDocs/ClosingDocs.module.scss @@ -40,7 +40,8 @@ margin: 0 auto; .docsName { - font-size: 1.2rem; + font-size: 1.4rem; + color: #868686; } .iconBorder { diff --git a/src/pages/closingDocs/ClosingDocs.tsx b/src/pages/closingDocs/ClosingDocs.tsx index 6c83b6e..7c75e3a 100644 --- a/src/pages/closingDocs/ClosingDocs.tsx +++ b/src/pages/closingDocs/ClosingDocs.tsx @@ -21,7 +21,6 @@ const ClosingDocs: React.FC = () => {

Upload your docs to join our team

- {/*
*/}
Gather all documents as mentioned below:
@@ -61,9 +60,7 @@ const ClosingDocs: React.FC = () => {
}
- {/* */} - - Proceed diff --git a/src/pages/closingDocs/VerifiedDocs.module.scss b/src/pages/closingDocs/VerifiedDocs.module.scss new file mode 100644 index 0000000..f449c28 --- /dev/null +++ b/src/pages/closingDocs/VerifiedDocs.module.scss @@ -0,0 +1,71 @@ +.verifiedDocsContent { + + .closingDocsDescription { + height: 75vh; + ion-icon { + width: 12.8rem; + height: 12.8rem; + width: 100%; + margin: 0 auto; + margin-top: 4vh; + } + + .heading { + color: lighten($color: #363636, $amount: 10%); + font-size: 2.4rem; + font-weight: 300; + text-align: center; + width: 90%; + margin: 0 auto; + margin-top: 4vh; + } + + .description { + font-size: 1.4rem; + color: #868686; + text-align: center; + width: 90%; + margin: 0 auto; + margin-top: 4vh + } + } + + + .buttonHolder { + display: flex; + justify-content: space-around; + align-items: center; + width: 95%; + margin: 0 auto; + // margin-top: 20vh; + + a{ + text-decoration: none; + } + + ion-button { + width: 18rem; + height: 5rem; + } + + .dashboardButton { + ion-button { + margin-bottom: 0; + --background: transparent; + --border-width: 0.1rem; + --border-color: var(--primary-button-color); + --border-style: solid; + --color: var(--primary-button-color); + } + } + + .nextStepButton { + ion-button { + margin-bottom: 0; + --background: var(--primary-button-color); + } + } + + + } +} diff --git a/src/pages/closingDocs/VerifiedDocs.tsx b/src/pages/closingDocs/VerifiedDocs.tsx new file mode 100644 index 0000000..5c7c66c --- /dev/null +++ b/src/pages/closingDocs/VerifiedDocs.tsx @@ -0,0 +1,34 @@ +import styles from "./VerifiedDocs.module.scss"; + +import { IonButton, IonContent, IonIcon, IonPage } from "@ionic/react"; +import StepHeader from "../../components/stepsHeader/StepHeader"; +import closingDocsImg from '../../assets/icons/Closing_Docs.svg'; +import { Link } from "react-router-dom"; + + +const VerifiedDocs: React.FC = () => { + return ( + + + +
+ +

We have verified your Docs

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. +

+
+
+ + Goto Dashboard + + + Goto Next Step + +
+
+
+ ); +} + +export default VerifiedDocs; \ No newline at end of file diff --git a/src/pages/interviewRounds/InterviewRounds.tsx b/src/pages/interviewRounds/InterviewRounds.tsx index 429bcef..6d7a89f 100644 --- a/src/pages/interviewRounds/InterviewRounds.tsx +++ b/src/pages/interviewRounds/InterviewRounds.tsx @@ -63,7 +63,7 @@ const InterviewRounds: React.FC = () => { descriptionImage: finalInterview, buttonText: "Schedule meeting", isUnlocked: false, - link: "/assignment" + link: "/finalInterview" }, { stepNumber: 6, @@ -71,7 +71,7 @@ const InterviewRounds: React.FC = () => { descriptionImage: closingDocs, buttonText: "Upload docs", isUnlocked: false, - link: "/assignment" + link: "/closingDocs" }, { stepNumber: 7, @@ -79,7 +79,7 @@ const InterviewRounds: React.FC = () => { descriptionImage: joiningLetter, buttonText: "Show details", isUnlocked: false, - link: "/assignment" + link: "/joiningLetter" }, { stepNumber: 8, @@ -87,7 +87,7 @@ const InterviewRounds: React.FC = () => { descriptionImage: Celebrations, buttonText: "Join Workex", isUnlocked: false, - link: "/assignment" + link: "/celebration" }, ];