first task

This commit is contained in:
2025-01-01 14:21:33 +02:00
commit 46385a838d
26 changed files with 6950 additions and 0 deletions

18
src/pages/homepage.jsx Normal file
View 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
View File

@@ -0,0 +1,11 @@
import React from 'react'
const jobspage = () => {
return (
<div>
</div>
)
}
export default jobspage

View 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