import { Modal } from "react-bootstrap"; import LogoBlack from "../../../public/assets/imgs/logo/logo-black.png"; import Image from "next/image"; const JobDetailsModal1 = ({ modal1, setModal1, setModal2 }) => { const applyClose = () => { setModal1(false); }; const applyTrigger = () => { setModal2(true); }; return ( <>
Site logo

Frontend Developer

Full time

Why you decided to apply here and why should we select you? *

Tell us about a project that you worked on and felt proud of it.

Share your portfolios. (Behance, Dribbble, etc) *

{"Who's your favorite designer? *"}

Do you have any other designs which you want to show us? or this is not available on your portfolio.

What are you looking for in your next job/journey? *

What makes you angry? and what makes you smile?

Your current salary & what are your salary expectations? *

); }; export default JobDetailsModal1;