index.js
5.63 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
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: "Budget Panorama",
homePageUrl: "/",
homePageText: "Home",
activePageText: "Budget Panorama",
},
];
const services = [
{
id: 1,
serviceIcon: "icon ri-group-2-line",
serviceTitle: "Budget Panorama - 2024",
serviceShortDescription:
"Advith Consulting is a seasoned business consulting firm with nearly 40 years of experience. The firm is led by a core team of highly experienced professionals with sound knowledge in their area of expertise. ",
readMoreText: "Read More",
serviceDetailsUrl: "/services/details",
},
{
id: 2,
serviceIcon: "icon ri-briefcase-line",
serviceTitle: "Budget Panorama - 2023",
serviceShortDescription:
"Advith Consulting is a business consulting firm with almost 40 years of experience on its resume. We provide a myriad of business consulting services in the fields of Direct tax, Indirect tax, Outsourcing (CFO services, Accounts, Payroll & Compliance Management), Corporate law & Advisory among others",
readMoreText: "Read More",
serviceDetailsUrl: "/services/details",
},
{
id: 3,
serviceIcon: "icon ri-money-dollar-box-line",
serviceTitle: "Budget Panorama - 2022",
serviceShortDescription:
"Amidst the growing worry due to the 3rd Covid wave, in particular the Omicron wave, the Hon'ble Finance Minister of India (FM) presented the Budget 2022 on 1st February 2022. The Economic Survey which was tabled before the India Parliament indicated a real GDP expansion of 9.2% in 2021-22, which showed a faster recovery of the economy after it contracted in FY 2020-21. This a positive sign and also shows the resilience that the Indian economy inherently has.",
readMoreText: "Read More",
serviceDetailsUrl: "/services/details",
},
{
id: 4,
serviceIcon: "icon ri-group-2-line",
serviceTitle: "Budget Panorama - 2021",
serviceShortDescription:
"Lorem ipsum dolor sit amet, consetetur sadicinan elitr, sed diam nonumy eirmod tempor invidunt utis labore et dolore magna aliquyam erat, sed diamsan voluptua at vero.",
readMoreText: "Read More",
serviceDetailsUrl: "/services/details",
},
{
id: 5,
serviceIcon: "icon ri-briefcase-line",
serviceTitle: "Budget Panorama - 2020",
serviceShortDescription:
"Lorem ipsum dolor sit amet, consetetur sadicinan elitr, sed diam nonumy eirmod tempor invidunt utis labore et dolore magna aliquyam erat, sed diamsan voluptua at vero.",
readMoreText: "Read More",
serviceDetailsUrl: "/services/details",
},
{
id: 6,
serviceIcon: "icon ri-money-dollar-box-line",
serviceTitle: "Budget Panorama - 2019",
serviceShortDescription:
"Lorem ipsum dolor sit amet, consetetur sadicinan elitr, sed diam nonumy eirmod tempor invidunt utis labore et dolore magna aliquyam erat, sed diamsan voluptua at vero.",
readMoreText: "Read More",
serviceDetailsUrl: "/services/details",
},
];
const BudgetPanorama = () => {
return (
<>
<PageBanner banners={banners} />
<div className="budget-panorama-page-area pt-70 pb-100 bg-light">
<Container>
<div className="section-title">
<Heading heading={"Budget Panorama"} el="h2" />
<p>
Budget Panorama is an annual edition released soon after the Union
budget is presented by the Finance Minister of India. Budget
Panorama gives a panoramic view of the recently announced budget
with the objective of educating the audience.
</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(index * 0.5)}
initial={"hidden"}
whileInView={"show"}
viewport={{ once: false, amount: 0.4 }}
>
<div className="services-box-budget">
<div className="d-flex align-items-center">
{/* <i className={service.serviceIcon}></i> */}
<Image
src="../images/knoweledge/budget_panorama.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"
>
{service.readMoreText}{" "}
<i className="ri-arrow-right-line"></i>
</Link>
</div>
</motion.div>
</Col>
))}
</Row>
</Container>
</div>
</>
);
};
export default BudgetPanorama;