From 298e86de48e6a8ec03724bffb1eb90e7b71403a5 Mon Sep 17 00:00:00 2001 From: Ajay_S Date: Tue, 26 Apr 2022 18:19:28 +0530 Subject: [PATCH] added a page to techinical interview --- src/App.tsx | 5 +- .../TechinicalInterviewResults.module.scss | 70 +++++++++++++++++++ .../TechinicalInterviewResults.tsx | 32 +++++++++ .../technicalInterview/TechnicalInterview.tsx | 2 +- 4 files changed, 107 insertions(+), 2 deletions(-) create mode 100644 src/pages/technicalInterview/TechinicalInterviewResults.module.scss create mode 100644 src/pages/technicalInterview/TechinicalInterviewResults.tsx diff --git a/src/App.tsx b/src/App.tsx index 7b23672..85c4a15 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -25,7 +25,6 @@ import PreliminaryRound from './pages/preliminaryRound/PreliminaryRound'; import Quiz from './pages/Quiz/Quiz'; import PreliminaryRoundResults from './pages/preliminaryRoundResults/PreliminaryRoundResults'; import TechnicalInterview from './pages/technicalInterview/TechnicalInterview'; -import TimeSlot from './components/timeSlot/TimeSlot'; import Assignment from './pages/assignment/Assignment'; import AssignmentDetails from './pages/assignment/AssignmentDetails'; import SubmitAssignment from './pages/assignment/SubmitAssignment'; @@ -38,6 +37,7 @@ import VerifiedDocs from './pages/closingDocs/VerifiedDocs'; import JoiningLetter from './pages/joiningLetter/JoiningLetter'; import Celebration from './pages/celebration/Celebration'; import SignaturePhoto from './pages/joiningLetter/SignaturePhoto'; +import TechinicalInterviewResults from './pages/technicalInterview/TechinicalInterviewResults'; @@ -65,6 +65,9 @@ const App: React.FC = () => ( + + + diff --git a/src/pages/technicalInterview/TechinicalInterviewResults.module.scss b/src/pages/technicalInterview/TechinicalInterviewResults.module.scss new file mode 100644 index 0000000..13865b5 --- /dev/null +++ b/src/pages/technicalInterview/TechinicalInterviewResults.module.scss @@ -0,0 +1,70 @@ +.techinicalInterviewResultsContent { + + .resultsDescription { + 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; + + a{ + text-decoration: none; + } + + ion-button { + width: 17rem; + height: 4.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/technicalInterview/TechinicalInterviewResults.tsx b/src/pages/technicalInterview/TechinicalInterviewResults.tsx new file mode 100644 index 0000000..9b6f6d8 --- /dev/null +++ b/src/pages/technicalInterview/TechinicalInterviewResults.tsx @@ -0,0 +1,32 @@ +import styles from "./TechinicalInterviewResults.module.scss"; +import techinicalInterview from "../../assets/icons/Technical_Interview.svg"; +import { IonButton, IonContent, IonIcon, IonPage } from "@ionic/react"; +import StepHeader from "../../components/stepsHeader/StepHeader"; +import { Link } from "react-router-dom"; + +const TechinicalInterviewResults: React.FC = () => { + return ( + + + +
+ +

Meeting went nice!

+

+ 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 TechinicalInterviewResults; \ No newline at end of file diff --git a/src/pages/technicalInterview/TechnicalInterview.tsx b/src/pages/technicalInterview/TechnicalInterview.tsx index eb462c4..d0f6631 100644 --- a/src/pages/technicalInterview/TechnicalInterview.tsx +++ b/src/pages/technicalInterview/TechnicalInterview.tsx @@ -89,7 +89,7 @@ const TechnicalInterview: React.FC = () => { Goto Dashboard - + Goto Next Step