CareerListing.js 3.4 KB
import Heading from "@/components/reuseables/Heading";
import Link from "next/link";
import React from "react";

const services = [
  {
    id: 1,
    serviceIcon: "icon ri-briefcase-line",
    serviceTitle: "Manager - Direct Tax Services",
    serviceShortDescription:
      "Would be involved in the Firm’s effort towards reading, researching, content creation and content dissemination in various modes Would be involved in ",
    location: "Bangalore South, India",
    yearofExperience: "1-3 years",
    Date: "Jul 23, 2022",
    jobtype: "Full Time",
    serviceDetailsUrl: "/career/detail",
  },
  {
    id: 2,
    serviceIcon: "icon ri-briefcase-line",
    serviceTitle: "Manager - Direct Tax Services",
    serviceShortDescription:
      "Would be involved in the Firm’s effort towards reading, researching, content creation and content dissemination in various modes Would be involved in ",
    location: "Bangalore South, India",
    yearofExperience: "1-3 years",
    Date: "Jul 23, 2022",
    jobtype: "Full Time",
    serviceDetailsUrl: "/career/detail",
  },
  {
    id: 3,
    serviceIcon: "icon ri-briefcase-line",
    serviceTitle: "Manager - Direct Tax Services",
    serviceShortDescription:
      "Would be involved in the Firm’s effort towards reading, researching, content creation and content dissemination in various modes Would be involved in ",
    location: "Bangalore South, India",
    yearofExperience: "1-3 years",
    Date: "Jul 23, 2022",
    jobtype: "Full Time",
    serviceDetailsUrl: "/career/detail",
  },
];
const CareerListing = () => {
  return (
    <>
      <div className="services-area ptb-70 career-details">
        <div className="container">
          <div className="section-title">
            <span className="sub-title">Current Openings</span>

            <Heading heading={"Join us"} />
            <p>
              At Advith Consulting, we believe in creating a long term career
              for those work with us.
            </p>
          </div>

          <div className="row align-items-center">
            {services &&
              services.map((service) => (
                <div className="col-lg-4 col-sm-6 col-md-6" key={service.id}>
                  <div className="services-box">
                    <div className="d-flex align-items-center">
                      <i className={service.serviceIcon}></i>
                      <h3>
                        <Link href={service.serviceDetailsUrl}>
                          {service.serviceTitle}
                        </Link>
                      </h3>
                    </div>
                    <div className="d-flex justify-content-between">
                      <p className="location">{service.location} </p>
                      <p className="yearofExperience">
                        {service.yearofExperience}
                      </p>
                    </div>

                    <p className="mt-0 career-shortdesc">
                      {service.serviceShortDescription}
                    </p>
                    <div className="d-flex justify-content-between">
                      <p className="date">{service.Date} </p>
                      <p className="job-type">
                        {service.jobtype}
                      </p>
                    </div>
                  </div>
                </div>
              ))}
          </div>
        </div>
      </div>
    </>
  );
};

export default CareerListing;