import { jobList } from "@/data/jobs"; import React from "react"; export default function Oppertunities() { return (

Opportunities For Professional Development

A variety of professional development opportunities to help you reach your career goals.

{jobList.map((job, index) => (

{job.title}

{job.type}

{job.description}

Arrangement :
{job.arrangement}
Salary Range :
{job.salary}
))}
); }