CareerPage.js
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import React from "react";
import PageBanner from "@/components/reuseables/PageBanner";
import CareerListing from "./CareerListing";
import { Col, Container, Row } from "react-bootstrap";
import Link from "next/link";
const CareerPage = () => {
const banners = [
{
imageSrc: "/images/banner/career.webp",
pageTitle: "Career",
homePageUrl: "/",
homePageText: "Home",
activePageText: "Career",
},
];
return (
<>
<PageBanner banners={banners} />
{/* <CareerListing /> */}
<section className="ptb-100">
<Container>
<Row className="justify-content-center text-center">
<Col md={10}>
<h3 className="text-center">
We're more than just a workplace. We're a family.
</h3>
<p className="text-center">
We know that finding a meaningful and rewarding job can be a long
journey. Our goal is to make that process as easy as possible for
you, and to create a work environment that's satisfying - one
where you'll look forward to coming to every day. Start your
journey with us by browsing available jobs.
</p>
<Link href="https://advithconsulting.zohorecruit.in/careers" target="_blank"> <button className="default-btn mt-4"> Browse Jobs <i className="ri-arrow-right-line"></i></button></Link>
</Col>
</Row>
</Container>
</section>
</>
);
};
export default CareerPage;