first task
This commit is contained in:
18
src/pages/homepage.jsx
Normal file
18
src/pages/homepage.jsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from 'react';
|
||||
import hero from '../components/hero';
|
||||
import homecards from '../components/homecards';
|
||||
import joblistings from '../components/joblistings';
|
||||
import viewalljobs from '../components/viewalljobs';
|
||||
|
||||
const homepage = () => {
|
||||
return (
|
||||
<>
|
||||
<hero />
|
||||
<homecards />
|
||||
<joblistings />
|
||||
<viewalljobs />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default homepage
|
||||
11
src/pages/jobspage.jsx
Normal file
11
src/pages/jobspage.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react'
|
||||
|
||||
const jobspage = () => {
|
||||
return (
|
||||
<div>
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default jobspage
|
||||
20
src/pages/notfoundpage.jsx
Normal file
20
src/pages/notfoundpage.jsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React from 'react'
|
||||
import {Link} from 'react-router-dom';
|
||||
import { FaExclamationTriangle } from 'react-icons/fa';
|
||||
|
||||
const notfoundpage = () => {
|
||||
return (
|
||||
<section className="text-center flex flex-col justify-center items-center h-96">
|
||||
<FaExclamationTriangle className='text-yellow-400 text-6xl mb-4' />
|
||||
<h1 className="text-6xl font-bold mb-4">404 Not Found</h1>
|
||||
<p className="text-xl mb-5">This page does not exist</p>
|
||||
<Link
|
||||
tp="/"
|
||||
className="text-white bg-indigo-700 hover:bg-indigo-900 rounded-md px-3 py-2 mt-4"
|
||||
>Go Back</Link
|
||||
>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
export default notfoundpage
|
||||
Reference in New Issue
Block a user