|
|
@@ -2,14 +2,50 @@ import styles from './InterviewRounds.module.scss'; |
|
|
|
|
|
|
|
import Button from "../../components/button/Button"; |
|
|
|
import Header from "./Header"; |
|
|
|
import { IonHeader, IonPage } from '@ionic/react'; |
|
|
|
import { IonContent, IonHeader, IonPage } from '@ionic/react'; |
|
|
|
import Steps from './Steps'; |
|
|
|
|
|
|
|
const InterviewRounds: React.FC = () => { |
|
|
|
return ( |
|
|
|
<IonPage> |
|
|
|
<Header /> |
|
|
|
</IonPage> |
|
|
|
|
|
|
|
<IonContent> |
|
|
|
<Steps |
|
|
|
stepNumber={1} |
|
|
|
roundName="Skill Information" |
|
|
|
isUnlocked={true} /> |
|
|
|
<Steps |
|
|
|
stepNumber={2} |
|
|
|
roundName="Preliminary Round" |
|
|
|
isUnlocked={false} /> |
|
|
|
<Steps |
|
|
|
stepNumber={3} |
|
|
|
roundName="Technical Interview" |
|
|
|
isUnlocked={false} /> |
|
|
|
<Steps |
|
|
|
stepNumber={4} |
|
|
|
roundName="Assignment" |
|
|
|
isUnlocked={false} /> |
|
|
|
<Steps |
|
|
|
stepNumber={5} |
|
|
|
roundName="Final Interview" |
|
|
|
isUnlocked={false} /> |
|
|
|
<Steps |
|
|
|
stepNumber={6} |
|
|
|
roundName="Closing Docs" |
|
|
|
isUnlocked={false} /> |
|
|
|
<Steps |
|
|
|
stepNumber={7} |
|
|
|
roundName="Joining Letter" |
|
|
|
isUnlocked={false} /> |
|
|
|
<Steps |
|
|
|
stepNumber={8} |
|
|
|
roundName="Celebrations" |
|
|
|
isUnlocked={false} /> |
|
|
|
|
|
|
|
</IonContent> |
|
|
|
</IonPage> |
|
|
|
) |
|
|
|
} |
|
|
|
|