CorpediaPage.js
6.73 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
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;