Changed Files
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import React from 'react';
|
||||
import hero from '../components/hero';
|
||||
import homecards from '../components/homecards';
|
||||
import homecards from '../components/HomeCards';
|
||||
import joblistings from '../components/jobListings';
|
||||
import viewalljobs from '../components/viewalljobs';
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import React from 'react'
|
||||
import joblistings from '../components/jobListings'
|
||||
|
||||
const jobspage = () => {
|
||||
const JobsPage = () => {
|
||||
return
|
||||
<section className='bg-blue-50 px-4 py-6'>
|
||||
<joblistings />
|
||||
</section>
|
||||
}
|
||||
|
||||
export default jobspage
|
||||
export default JobsPage
|
||||
|
||||
@@ -2,7 +2,7 @@ import React from 'react'
|
||||
import {Link} from 'react-router-dom';
|
||||
import { FaExclamationTriangle } from 'react-icons/fa';
|
||||
|
||||
const notfoundpage = () => {
|
||||
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' />
|
||||
@@ -17,4 +17,4 @@ const notfoundpage = () => {
|
||||
)
|
||||
}
|
||||
|
||||
export default notfoundpage
|
||||
export default NotFoundPage
|
||||
Reference in New Issue
Block a user