Changed Files

This commit is contained in:
2025-01-01 15:04:11 +02:00
parent 9982b71f57
commit d4270a1e84
4 changed files with 19 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react';
import hero from '../components/hero';
import homecards from '../components/homecards';
import joblistings from '../components/joblistings';
import joblistings from '../components/jobListings';
import viewalljobs from '../components/viewalljobs';
const homepage = () => {

View File

@@ -1,11 +1,11 @@
import React from 'react'
import joblistings from '../components/jobListings'
const jobspage = () => {
return (
<div>
</div>
)
return
<section className='bg-blue-50 px-4 py-6'>
<joblistings />
</section>
}
export default jobspage