CorpediaPage.js 6.73 KB
import React from "react";
import Link from "next/link";
import { Col, Container, Row } from "react-bootstrap";
import Heading from "@/components/reuseables/Heading";
import { motion } from "framer-motion";
import { slideFromLeft } from "@/components/reuseables/variants";
import PageBanner from "@/components/reuseables/PageBanner";
import Image from "next/image";
const banners = [
  {
    imageSrc: "/images/banner/knowledge.webp",
    pageTitle: "Corpedia",
    homePageUrl: "/",
    homePageText: "Home",
    activePageText: "Corpedia",
  },
  // Add more banners as needed
];
const services = [
  {
    id: 1,
    serviceTitle: "Karnataka Compulsory Gratuity Insurance Rules, 2024",
    serviceShortDescription:
      "The Karnataka government has made it mandatory for employers to offer gratuity insurance for their employees. These rules ensure the timely payment of gratuity and provide a more secure framework for employee benefits.",
    serviceDetailsUrl: "/corpedia/details",
    date: "15 Feb 2024",
  },
  {
    id: 2,
    serviceTitle: "Recent amendment in Companies and LLP Act in India",
    serviceShortDescription:
      "Recently, the Ministry of Corporate Affairs came out with certain amendments concerning dematerilisation of shares of private limited companies, the issue of warrants by companies, certain administrative matters, and additional compliances applicable to Limited Liability Partnerships (LLP).",
    serviceDetailsUrl: "/corpedia/details",
    date: "16 Nov 2023",
  },
  {
    id: 3,
    serviceTitle: "Recent Amendments relating to Accounts and Audit under Companies Act, 2013",
    serviceShortDescription:
      "Several amendments have been introduced under the Companies Act, 2013, specifically regarding auditing and reporting standards, compliance requirements, and financial disclosures.",
    serviceDetailsUrl: "/corpedia/details",
    date: "18 Aug 2021",
  },
  {
    id: 4,
    serviceTitle: "The Companies (Corporate Social Responsibility Policy) Amendment Rules, 2021",
    serviceShortDescription:
      "The 2021 amendment to CSR rules focuses on expanding the scope of CSR activities, ensuring better compliance, and introducing a more structured approach to corporate social responsibility.",
    serviceDetailsUrl: "/corpedia/details",
    date: "28 Jan 2021",
  },
  {
    id: 5,
    serviceTitle: "Company and LLP – Amnesty Schemes",
    serviceShortDescription:
      "The government introduced amnesty schemes aimed at providing relief to companies and LLPs with overdue filings and compliance requirements, offering reduced penalties.",
    serviceDetailsUrl: "/corpedia/details",
    date: "04 Apr 2020",
  },
  {
    id: 6,
    serviceTitle: "ESI contribution rates reduced",
    serviceShortDescription:
      "In an effort to support businesses and employees, the ESI contribution rates have been significantly reduced, offering relief to both employers and employees.",
    serviceDetailsUrl: "/corpedia/details",
    date: "24 Jun 2019",
  },
  {
    id: 7,
    serviceTitle: "Condonation of Delay Scheme 2018",
    serviceShortDescription:
      "This scheme allows companies and LLPs to make up for delays in filing annual returns and financial statements with a condonation of penalties, ensuring compliance with statutory requirements.",
    serviceDetailsUrl: "/corpedia/details",
    date: "06 Jan 2018",
  },
  {
    id: 8,
    serviceTitle: "ESIC – Background & Recent Amendments",
    serviceShortDescription:
      "Recent amendments to the ESIC have introduced new reforms that strengthen employee welfare and ensure greater coverage for workers across various sectors.",
    serviceDetailsUrl: "/corpedia/details",
    date: "11 Jan 2017",
  },
  {
    id: 9,
    serviceTitle: "The Master Stroke",
    serviceShortDescription:
      "The introduction of new reforms and regulations under this policy aims to streamline business practices and promote greater ease of doing business in India.",
    serviceDetailsUrl: "/corpedia/details",
    date: "10 Nov 2016",
  },
  {
    id: 10,
    serviceTitle: "Startup India Initiative – A Glimpse",
    serviceShortDescription:
      "The Startup India initiative offers tax breaks, incentives, and simplified compliance procedures for startups to promote innovation and entrepreneurship.",
    serviceDetailsUrl: "/corpedia/details",
    date: "30 Apr 2016",
  },
  {
    id: 11,
    serviceTitle: "The Companies (Accounting Standard) Amendment Rule, 2016",
    serviceShortDescription:
      "The amendment to the Companies (Accounting Standard) rules brings updated accounting practices in line with international standards, ensuring transparency and accuracy in financial reporting.",
    serviceDetailsUrl: "/corpedia/details",
    date: "18 Apr 2016",
  },
];


const CorpediaPage = () => {
  return (
    <>
      <PageBanner banners={banners} />

      <div className="corpedia-page-area pt-70 pb-100 bg-light">
        <Container>
          <div className="section-title">
            <Heading heading={"Corpedia"} el="h2" />
            <p>
              Get the scoop on India's corporate legal happenings with Corpedia,
              your go-to source for updates and analysis.
            </p>
          </div>
          <Row className="align-items-center">
            {services &&
              services.map((service, index) => (
                <Col lg={4} md={6} sm={12} key={service.id}>
                  <motion.div
                    variants={slideFromLeft(0.5)}
                    initial={"hidden"}
                    whileInView={"show"}
                    viewport={{ once: false, amount: 0.4 }}
                  >
                    <div className="services-box-budget">
                      <div className="d-flex align-items-center">
                        <Image
                          src="../images/knoweledge/corpedia.svg"
                          alt={service.serviceTitle}
                          width={40}
                          height={40}
                          className="img-fluid me-3"
                        />
                        <h3>
                          <Link href={service.serviceDetailsUrl}>
                            {service.serviceTitle}
                          </Link>
                        </h3>
                      </div>

                      <p>{service.serviceShortDescription}</p>

                      <Link
                        href={service.serviceDetailsUrl}
                        className="default-btn"
                      >
                        Read More
                        <i className="ri-arrow-right-line"></i>
                      </Link>
                    </div>
                  </motion.div>
                </Col>
              ))}
          </Row>
        </Container>
      </div>
    </>
  );
};

export default CorpediaPage;