Changed Files

This commit is contained in:
2025-01-01 15:05:44 +02:00
parent d4270a1e84
commit 68f09078e9
7 changed files with 101 additions and 98 deletions

View File

@@ -2,7 +2,7 @@ import React from 'react'
import card from './card' import card from './card'
import {Link} from 'react-router-dom' import {Link} from 'react-router-dom'
const homecards = () => { const HomeCards = () => {
return ( return (
<section className="py-4"> <section className="py-4">
<div className="container-xl lg:container m-auto"> <div className="container-xl lg:container m-auto">
@@ -37,4 +37,4 @@ const homecards = () => {
) )
} }
export default homecards export default HomeCards

View File

@@ -4,7 +4,7 @@ import { useState } from 'react'
import {FaMapMarker } from 'react-icons/fa' import {FaMapMarker } from 'react-icons/fa'
import {Link} from 'react-router-dom'; import {Link} from 'react-router-dom';
const joblisting = ({job}) => { const jobListing = ({job}) => {
const [showFullDescription, setShowFullDescription] = useState(false); const [showFullDescription, setShowFullDescription] = useState(false);
let description = job.description; let description = job.description;
@@ -48,4 +48,4 @@ const joblisting = ({job}) => {
) )
} }
export default joblisting export default l

View File

@@ -1,3 +1,5 @@
{
"jobs":
[ [
{ {
"id": "1", "id": "1",
@@ -84,3 +86,4 @@
} }
} }
] ]
}

View File

@@ -1,15 +1,15 @@
import { Outlet, replace } from "react-router-dom"; import { Outlet, replace } from "react-router-dom";
import navbar from "../components/navbar"; import NavBar from "../components/navBar";
import React from 'react' import React from 'react'
const mainlayout = () => { const MainLayout = () => {
return ( return (
<> <>
<navbar /> <NavBar />
<Outlet /> <Outlet />
</> </>
); );
} }
export default mainlayout export default MainLayout

View File

@@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import hero from '../components/hero'; import hero from '../components/hero';
import homecards from '../components/homecards'; import homecards from '../components/HomeCards';
import joblistings from '../components/jobListings'; import joblistings from '../components/jobListings';
import viewalljobs from '../components/viewalljobs'; import viewalljobs from '../components/viewalljobs';

View File

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

View File

@@ -2,7 +2,7 @@ import React from 'react'
import {Link} from 'react-router-dom'; import {Link} from 'react-router-dom';
import { FaExclamationTriangle } from 'react-icons/fa'; import { FaExclamationTriangle } from 'react-icons/fa';
const notfoundpage = () => { const NotFoundPage = () => {
return ( return (
<section className="text-center flex flex-col justify-center items-center h-96"> <section className="text-center flex flex-col justify-center items-center h-96">
<FaExclamationTriangle className='text-yellow-400 text-6xl mb-4' /> <FaExclamationTriangle className='text-yellow-400 text-6xl mb-4' />
@@ -17,4 +17,4 @@ const notfoundpage = () => {
) )
} }
export default notfoundpage export default NotFoundPage