Angular job portal app
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Celebration.tsx 1.2 KiB

12345678910111213141516171819202122232425262728
  1. import styles from "./celebration.module.scss";
  2. import { IonButton, IonContent, IonIcon, IonPage } from "@ionic/react";
  3. import StepHeader from "../../components/stepsHeader/StepHeader";
  4. import celebration from "../../assets/icons/Celebrations.svg";
  5. import { Link } from "react-router-dom";
  6. const Celebration: React.FC = () => {
  7. return (
  8. <IonPage>
  9. <StepHeader stepNumber={8} roundName="Celebration" />
  10. <IonContent className={styles.celebrationContent}>
  11. <div className={styles.celebrationDescription}>
  12. <IonIcon src={celebration} />
  13. <h4 className={styles.heading}>We have verified your Docs</h4>
  14. <p className={styles.description}>
  15. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
  16. </p>
  17. </div>
  18. <Link to="/" className={styles.workexButton}>
  19. <IonButton shape="round" expand="block">Join workex</IonButton>
  20. </Link>
  21. </IonContent>
  22. </IonPage >
  23. );
  24. }
  25. export default Celebration;