|
@@ -1,47 +1,27 @@
|
|
import React from 'react';
|
|
import React from 'react';
|
|
import styles from './AboutUs.module.css'
|
|
import styles from './AboutUs.module.css'
|
|
import {useTranslation} from "react-i18next";
|
|
import {useTranslation} from "react-i18next";
|
|
-import left from "../../assets/images/join/left.png";
|
|
|
|
-import right from "../../assets/images/join/right.png";
|
|
|
|
|
|
+import img1 from "../../assets/images/home/img1.png";
|
|
|
|
|
|
const AboutUs = () => {
|
|
const AboutUs = () => {
|
|
const {t} = useTranslation();
|
|
const {t} = useTranslation();
|
|
return (
|
|
return (
|
|
<main className={styles.root}>
|
|
<main className={styles.root}>
|
|
<div className={styles.topContainer}>
|
|
<div className={styles.topContainer}>
|
|
- <div className={styles.titleContainer}>
|
|
|
|
- <p className={styles.joinUsTitle}>{t('joinUsTitle')}</p>
|
|
|
|
- <p className={styles.joinUsSubtitle}>{t('joinUsContent1')}</p>
|
|
|
|
- <p className={styles.joinUsSubtitle}>{t('joinUsContent2')}</p>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <p className={styles.aboutUsTitle}>{t('aboutUsTitle')}</p>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
- <div className={styles.centerImageContainer}>
|
|
|
|
- <div className={styles.centerImageItem}>
|
|
|
|
- <img className={styles.centerImg} src={left}/>
|
|
|
|
- <p className={styles.centerText1}>{t('joinUsLeftContent1')}</p>
|
|
|
|
- <p className={styles.centerText2}>{t('joinUsLeftContent2')}</p>
|
|
|
|
- </div>
|
|
|
|
- <div className={styles.centerImageItem}>
|
|
|
|
- <img className={styles.centerImg} src={right}/>
|
|
|
|
- <p className={styles.centerText1}>{t('joinUsRightContent1')}</p>
|
|
|
|
- <p className={styles.centerText2}>{t('joinUsRightContent2')}</p>
|
|
|
|
|
|
+ <div className={styles.contentContainer}>
|
|
|
|
+ <img className={styles.image} src={img1}/>
|
|
|
|
+ <div className={styles.fontContainer}>
|
|
|
|
+ <p className={styles.boldFont}>{t('aboutUsTipTitle1')}</p>
|
|
|
|
+ <p className={styles.normalFont}>{t('aboutUsTipContent1')}</p>
|
|
|
|
+ <p className={styles.normalFont}>{t('aboutUsTipContent2')}</p>
|
|
|
|
+ <p className={styles.normalFont}>{t('aboutUsTipContent3')}</p>
|
|
|
|
+ <p className={styles.normalFont}>{t('aboutUsTipContent4')}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div className={styles.bottomImgContainer}>
|
|
|
|
- <p className={styles.bottomText}>{t('joinUsBottomText1')} {t('joinUsBottomText2')}</p>
|
|
|
|
- </div>
|
|
|
|
- <div className={styles.jobsContainer}>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob1')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob2')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob3')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob4')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob5')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob6')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob7')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob8')}</p>
|
|
|
|
- <p className={styles.jobItem}>{t('joinUsJob9')}</p>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div className={styles.bottomContainer}/>
|
|
|
|
+
|
|
</main>
|
|
</main>
|
|
);
|
|
);
|
|
};
|
|
};
|