first commit
This commit is contained in:
47
src/pages/page-career-details/index.jsx
Normal file
47
src/pages/page-career-details/index.jsx
Normal file
@ -0,0 +1,47 @@
|
||||
import React, { useEffect, useRef } from 'react';
|
||||
//= Scripts
|
||||
import navbarScrollEffect from "common/navbarScrollEffect";
|
||||
//= Layout
|
||||
import MainLayout from 'layouts/Main';
|
||||
//= Components
|
||||
import TopNav from 'components/Navbars/TopNav';
|
||||
import Navbar from 'components/Navbars/SaasNav';
|
||||
import Header from 'components/Style2/Header';
|
||||
import JobDetails from 'components/Style2/CareerDetails/JobDetails';
|
||||
import CareerPositions from 'components/Style2/CareerDetails/CareerPositions';
|
||||
import CareerForm from 'components/Style2/CareerDetails/CareerForm';
|
||||
import Footer from 'components/Saas/Footer';
|
||||
|
||||
const PageCareerDetails = () => {
|
||||
const navbarRef = useRef(null);
|
||||
|
||||
useEffect(() => {
|
||||
navbarScrollEffect(navbarRef.current, true);
|
||||
}, [navbarRef]);
|
||||
|
||||
return (
|
||||
<MainLayout>
|
||||
<TopNav style="5" />
|
||||
<Navbar navbarRef={navbarRef} />
|
||||
<Header page="Career Details" title="Product Designer" />
|
||||
<main className="career-details-page style-5 pt-100">
|
||||
<JobDetails />
|
||||
<CareerPositions />
|
||||
<CareerForm />
|
||||
</main>
|
||||
<Footer noWave />
|
||||
</MainLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export const Head = () => {
|
||||
return (
|
||||
<>
|
||||
<title>Iteck - Career Details</title>
|
||||
<link rel="stylesheet" href="/assets/css/lib/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="/assets/css/style.css" />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default PageCareerDetails;
|
||||
Reference in New Issue
Block a user