-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
worked with the careerDetail page #51
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react' | ||
import Header from '../../components/layout/Header' | ||
import Footer from '../../components/layout/Footer' | ||
import GeneralHero from '../../components/layout/GeneralHero' | ||
import career from '../career/Career' | ||
import image from "../../assets/images/Rectangle 2.png"; | ||
import CareerDetailSection from './components/CareerDetailSection' | ||
|
||
const CareerDetails = () => { | ||
return ( | ||
<div> | ||
|
||
<Header/> | ||
<GeneralHero | ||
title="Career" | ||
subTitle={career?.title || "Teacher Educator"} | ||
image={image} | ||
></GeneralHero> | ||
|
||
<CareerDetailSection/> | ||
|
||
<Footer/> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default CareerDetails | ||
|
169 changes: 169 additions & 0 deletions
169
src/pages/careerdetails/components/CareerDetailSection.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
import React from 'react' | ||
import Button from '../../../components/Button' | ||
|
||
const CareerDetailSection = () => { | ||
return ( | ||
<div className='mx-28 mr-28'> | ||
<div className='flex justify-between mt-8'> | ||
<div> | ||
<h1 className='text-4xl font-bold'>TEACHER EDUCATOR</h1> | ||
<div className='flex gap-16 text-xl mt-4'> | ||
<p>Full time</p> | ||
<p>Remote</p> | ||
<p>2-4years</p> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<Button className="primary-button" | ||
text="Apply Now" | ||
icon={<i className="fa fa-angle-right"></i>} | ||
/> | ||
|
||
</div> | ||
</div> | ||
|
||
<div className='flex justify-evenly mt-9 mb-6'> | ||
<div> | ||
<h1 className='text-2xl font-semibold mb-7'>About Role</h1> | ||
<ul> | ||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto! | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto!</p> </ul> | ||
</div> | ||
|
||
<div> | ||
<h1 className='text-2xl font-semibold mb-10'>Similar Jobs</h1> | ||
<div className='bg-slate-300 w-96 h-48 '> | ||
<h1 className='text-2xl font-semibold mx-10 mt-5'>Marketing Volunteer</h1> | ||
<div className='flex gap-8 text-xl mx-10 mt-5'> | ||
<p>Full time</p> | ||
<p>Remote</p> | ||
<p>2-4years</p> | ||
</div> | ||
<button className='secondary-button mx-10 mt-12'>Apply Now | ||
<i className="fa fa-angle-right"></i> | ||
</button> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<div className='flex justify-evenly mt-9 mb-6'> | ||
<div> | ||
<h1 className='text-2xl font-semibold mb-7'>Qualification</h1> | ||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto! | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto!</p> | ||
</div> | ||
|
||
<div> | ||
<div className='bg-slate-300 w-96 h-48 '> | ||
<h1 className='text-2xl font-semibold mx-10'>Marketing Volunteer</h1> | ||
<div className='flex gap-8 text-xl mx-10 mt-5'> | ||
<p>Full time</p> | ||
<p>Remote</p> | ||
<p>2-4years</p> | ||
</div> | ||
<button className='secondary-button mx-10 mt-12'>Apply Now | ||
<i className="fa fa-angle-right"></i> | ||
</button> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<div className='flex justify-evenly mt-9 mb-6'> | ||
<div> | ||
<h1 className='text-2xl font-semibold mb-7'>Responsibilities</h1> | ||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto! | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto!</p> | ||
</div> | ||
|
||
<div> | ||
<h1 className='text-2xl font-semibold mb-10'>More Jobs</h1> | ||
<div className='bg-slate-300 w-96 h-48 '> | ||
<h1 className='text-2xl font-semibold mx-10'>Marketing Volunteer</h1> | ||
<div className='flex gap-8 text-xl mx-10 mt-5'> | ||
<p>Full time</p> | ||
<p>Remote</p> | ||
<p>2-4years</p> | ||
</div> | ||
<button className='secondary-button mx-10 mt-12'>Apply Now | ||
<i className="fa fa-angle-right"></i> | ||
</button> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
|
||
<div className='flex justify-evenly mt-9 mb-6'> | ||
<div> | ||
<h1 className='text-2xl font-semibold mb-7'>More Role</h1> | ||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto! | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
Iusto doloremque veritatis eum quasi placeat fugiat | ||
nostrum maxime quos corporis cum quas, temporibus, inventore, | ||
architecto illo. Eaque sed qui nemo architecto!</p> | ||
</div> | ||
|
||
<div> | ||
|
||
<div className='bg-slate-300 w-96 h-48 '> | ||
<h1 className='text-2xl font-semibold mx-10'>Marketing Volunteer</h1> | ||
<div className='flex gap-8 text-xl mx-10 mt-5'> | ||
<p>Full time</p> | ||
<p>Remote</p> | ||
<p>2-4years</p> | ||
</div> | ||
<button className='secondary-button mx-10 mt-12'>Apply Now | ||
<i className="fa fa-angle-right"></i> | ||
</button> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
|
||
|
||
</div> | ||
) | ||
} | ||
|
||
export default CareerDetailSection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check cause details route definition on line 29.
CareerDetails should have a /:id to it