|
|
@@ -0,0 +1,41 @@ |
|
|
|
import { IonButton, IonContent, IonIcon, IonPage } from "@ionic/react"; |
|
|
|
import { Link } from "react-router-dom"; |
|
|
|
import StepHeader from "../../components/stepsHeader/StepHeader"; |
|
|
|
import styles from "./AssignmentCompleted.module.scss"; |
|
|
|
import assignmentImage from "../../assets/icons/Assignment.svg"; |
|
|
|
|
|
|
|
const AssignmentCompleted: React.FC = () => { |
|
|
|
return ( |
|
|
|
<IonPage> |
|
|
|
<StepHeader roundName="Assignment" stepNumber={4} /> |
|
|
|
<IonContent className={styles.assignmentCompleted}> |
|
|
|
|
|
|
|
<div className={styles.description}> |
|
|
|
<div className={styles.icon}> |
|
|
|
<IonIcon src={assignmentImage} /> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div className={styles.stepDescription}> |
|
|
|
<h4>We have seen your Assignment</h4> |
|
|
|
<p> |
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div className={styles.buttonHolder}> |
|
|
|
<Link to="/interviewRounds" |
|
|
|
className={styles.dashboard}> |
|
|
|
<IonButton shape="round" expand='block'>Goto Dashboard</IonButton> |
|
|
|
</Link> |
|
|
|
<Link to="/finalInterview" |
|
|
|
className={styles.nextStep}> |
|
|
|
<IonButton shape="round" expand='block'>Goto Next Step</IonButton> |
|
|
|
</Link> |
|
|
|
</div> |
|
|
|
</IonContent> |
|
|
|
</IonPage> |
|
|
|
) |
|
|
|
} |
|
|
|
|
|
|
|
export default AssignmentCompleted; |