Detail.js 3.84 KB
import React from "react";
import CareerSidebar from "./CareerSidebar";
import { Col, Container, Row } from "react-bootstrap";
import PageBanner from "@/components/reuseables/PageBanner";

const banners = [
  {
    imageSrc: "/images/banner/career.webp",
    pageTitle: "Manager - Direct Tax Services",
    homePageUrl: "/",
    homePageText: "Home",
    activePageText: "career",
  },
  // Add more banners as needed
];

const career = [
  {
    id: 1,
    title: "Software Developer",
    aboutus:
      "Advith Consulting is a business consulting firm with almost 40 years of experience on its resume.Four decades in the consulting industry has equipped us with exceptional in-house talent to serve our clients’ requirements.Our client pool extends across multiple industries, ranging from manufacturing, information technology, trading, education, hospitality, and pharmaceuticals. Consistent and timely delivery of results has helped Advith Consulting carve a niche for itself. We provide consultancy services to an array of clients, including family businesses, entrepreneurial ventures, public listed companies, and multinational corporations.",
    jobdescription: [
      "Would be involved in the Firm’s effort towards reading, researching, content creation and content dissemination in various modes",
      "Would be involved in working on Position papers and Guidance Notes for internal usage by the Firm",
      "Would be involved in servicing clients from various industry profile and geographies in engagements involving:",
    ],
    requirements: [
      "Excellent Communication Skill",
      "Chartered Accountant",
      "Experience (2-5 years PQE)",
      "Should have relevant Direct Tax Consulting experience",
      "Should have strong fundamental understanding of Direct Tax law and practice.",
      "Must have keen interest in legal and working knowledge of Direct Taxation",
      "Enthusiasm towards reading, researching, and working in Direct Tax domain to build a specialised career in DT domain",
      "Good Analytical & Interpersonal Skill",
      "Good Team Player and respect for Organization hierarchy",
    ],
    benfit: [ 
        "Pay commensurate with a growing mid-sized Full scope finance & tax consulting Firm",
        "Candidates who are looking to build a medium to long term career all the way till leadership team will receive unparallel mentorship and opportunity."
    ],
  },
];
const Detail = () => {
  return (
    <>
      <PageBanner banners={banners} />

      <div className="projects-details-area ptb-100">
        <Container>
          <Row>
            <Col md={8} sm={12}>
              <div className="projects-details-desc">
                <h3>About Us</h3>
                <p>{career[0].aboutus}</p>
                <h3>Job Description</h3>

                <p>
                  <ul>
                    {career[0].jobdescription.map((item, index) => (
                      <li key={index}>{item}</li>
                    ))}
                  </ul>
                </p>

                <h3>Requirements</h3>

                <p>
                  <ul>
                    {career[0].requirements.map((item, index) => (
                      <li key={index}>{item}</li>
                    ))}
                  </ul>
                </p>
                    <h3>Benefits</h3>
                    <p>
                      <ul>
                        {career[0].benfit.map((item, index) => (
                          <li key={index}>{item}</li>
                        ))}
                      </ul>
                    </p>   
                    <button className="default-btn">Apply Now <i class="ri-arrow-right-line"></i></button>       
              </div>
            </Col>


            <Col md={4} sm={12}>
              <CareerSidebar />
            </Col>
          </Row>
        </Container>
      </div>
    </>
  );
};

export default Detail;