|
@@ -1,8 +1,22 @@ |
|
|
import styles from './SlillInformation.module.scss'; |
|
|
|
|
|
import { IonContent, IonPage } from "@ionic/react"; |
|
|
|
|
|
|
|
|
import styles from './SkillInformationStep.module.scss'; |
|
|
|
|
|
import { IonButton, IonContent, IonPage } from "@ionic/react"; |
|
|
import StepsHeader from "../../components/stepsHeader/StepsHeader"; |
|
|
import StepsHeader from "../../components/stepsHeader/StepsHeader"; |
|
|
import Skills from './Skills'; |
|
|
|
|
|
|
|
|
import SkillsCard from './SkillsCard'; |
|
|
|
|
|
|
|
|
import reactIcon from '../../assets/images/React.png'; |
|
|
import reactIcon from '../../assets/images/React.png'; |
|
|
|
|
|
import angularIcon from '../../assets/images/Angular.png'; |
|
|
|
|
|
import ionicIcon from '../../assets/images/IonicFramework.png'; |
|
|
|
|
|
import reactNative from '../../assets/images/ReactNative.png'; |
|
|
|
|
|
import vueIcon from '../../assets/images/VueJS.png'; |
|
|
|
|
|
import nodeJSIcon from '../../assets/images/NodeJS.png'; |
|
|
|
|
|
import ExpressJSICon from '../../assets/images/ExpressJS.png'; |
|
|
|
|
|
import DjangoIcon from '../../assets/images/DjangoFramework.png'; |
|
|
|
|
|
import MySqlIcon from '../../assets/images/MySql.png'; |
|
|
|
|
|
import MongoDBIcon from '../../assets/images/Mongo.png'; |
|
|
|
|
|
import postgreSqlIcon from '../../assets/images/PostgreSQL.png'; |
|
|
|
|
|
import FirebaseIcon from '../../assets/images/Firebase.png'; |
|
|
|
|
|
import DevOpsIcon from '../../assets/images/DevOps.png'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const SkillInformationStep: React.FC = () => { |
|
|
const SkillInformationStep: React.FC = () => { |
|
|
return ( |
|
|
return ( |
|
@@ -11,10 +25,69 @@ const SkillInformationStep: React.FC = () => { |
|
|
stepNumber={1} |
|
|
stepNumber={1} |
|
|
roundName="Skill Information" /> |
|
|
roundName="Skill Information" /> |
|
|
<IonContent> |
|
|
<IonContent> |
|
|
<Skills name='React JS/TS' icon={reactIcon} /> |
|
|
|
|
|
|
|
|
<div className={styles.description}> |
|
|
|
|
|
<h3 className={styles.heading}>What are you good at?</h3> |
|
|
|
|
|
|
|
|
|
|
|
<p className={styles.note}> |
|
|
|
|
|
Please note that you should have knowledge of at least 1 tech stack in each category & must know the basics of HTML/CSS/JS, Git. |
|
|
|
|
|
</p> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skillsCard}> |
|
|
|
|
|
|
|
|
|
|
|
<h5 className={styles.heading}>Front-end:</h5> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skills}> |
|
|
|
|
|
<SkillsCard name='React JS/TS' icon={reactIcon} /> |
|
|
|
|
|
<SkillsCard name='Angular8+' icon={angularIcon} /> |
|
|
|
|
|
<SkillsCard name='Ionic FrameWork' icon={ionicIcon} /> |
|
|
|
|
|
<SkillsCard name='React Native' icon={reactNative} /> |
|
|
|
|
|
<SkillsCard name='VueJS' icon={vueIcon} /> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skillsCard}> |
|
|
|
|
|
|
|
|
|
|
|
<h5 className={styles.heading}>Back-end:</h5> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skills}> |
|
|
|
|
|
<SkillsCard name='NodeJS' icon={nodeJSIcon} /> |
|
|
|
|
|
<SkillsCard name='ExpressJS' icon={ExpressJSICon} /> |
|
|
|
|
|
<SkillsCard name='Django FrameWork' icon={DjangoIcon} /> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skillsCard}> |
|
|
|
|
|
|
|
|
|
|
|
<h5 className={styles.heading}>Database:</h5> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skills}> |
|
|
|
|
|
<SkillsCard name='MySql' icon={MySqlIcon} /> |
|
|
|
|
|
<SkillsCard name='MongoDB' icon={MongoDBIcon} /> |
|
|
|
|
|
<SkillsCard name='PostgreSQL' icon={postgreSqlIcon} /> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skillsCard}> |
|
|
|
|
|
|
|
|
|
|
|
<h5 className={styles.heading}>Beneficial:</h5> |
|
|
|
|
|
|
|
|
|
|
|
<div className={styles.skills}> |
|
|
|
|
|
<SkillsCard name='Firebase' icon={FirebaseIcon} /> |
|
|
|
|
|
<SkillsCard name='DevOps (Docker / Kubernetes)' icon={DevOpsIcon} /> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<IonButton shape="round" color='success' expand='block'>Done!</IonButton> |
|
|
|
|
|
|
|
|
</IonContent> |
|
|
</IonContent> |
|
|
</IonPage> |
|
|
</IonPage> |
|
|
) |
|
|
|
|
|
|
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
export default SkillInformationStep; |
|
|
export default SkillInformationStep; |