Footer.js
5.72 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
172
173
174
175
176
import React from "react";
import { Container, Row, Col } from "react-bootstrap";
import Image from "next/image";
import Link from "next/link";
const Footer = () => {
return (
<footer className="footer">
<Container className="custom_container sec_padd">
<Row className="gy-4 justify-content-between">
{/* Left - Logo + Contact Info */}
<Col lg={3} md={6} className="footer-cotent">
<Image
src="/image/footer-logo.svg"
alt="logo"
width={278}
height={51}
className="mb-3"
/>
<ul className="list-unstyled">
<li className="d-flex mb-3 gap-2 align-items-baseline">
<i className="fa-solid fa-location-dot"></i>
<span>
Raghuvanshi Mill compound, 8A, Senapati<br /> Bapat Marg, Gandhi Nagar, Upper Worli,<br /> Lower Parel, Mumbai, Maharashtra 400013
</span>
</li>
<li className="d-flex align-items-center mb-3 gap-2">
<i className="fa-solid fa-envelope"></i>
<a href="mailto:support@akruti.luxe.com">
support@akruti.luxe.com
</a>
</li>
<li className="d-flex align-items-center gap-2">
<i className="fa-solid fa-phone"></i>
<a href="tel:+919236546126">
+91 92365 46126
</a>
</li>
</ul>
</Col>
<Col lg={5}>
<Row>
{/* Quick Links */}
<Col lg={4} xs={6} className="footer-cotent ps-md-4">
<h6 className="mb-3">Quick Links</h6>
<ul className="list-unstyled">
<li className="mb-2">
<Link href="/about">
About
</Link>
</li>
<li className="mb-2">
<Link href="/collections/kitchens">
Collections
</Link>
</li>
<li className="mb-2">
<Link href="/brands/valcucine">
Brands
</Link>
</li>
<li className="mb-2">
<Link href="/catalogue">
Catalogue
</Link>
</li>
<li className="">
<Link href="/contacts">
Contacts
</Link>
</li>
</ul>
</Col>
{/* Collections */}
<Col lg={4} xs={6} className="footer-cotent ps-md-4">
<h6 className="mb-3">Collections</h6>
<ul className="list-unstyled">
<li className="mb-2">
<Link href="/collections/kitchens">
Kitchens
</Link>
</li>
<li className="mb-2">
<Link href="/collections/wardrobes">
Wardrobes
</Link>
</li>
<li className="mb-2">
<Link href="/collections/doors-and-partitions">
Doors and Partitions
</Link>
</li>
<li className="mb-2">
<Link href="/collections/furniture-accessories">
Furniture Accessories
</Link>
</li>
<li className="mb-2">
<Link href="/collections/wall-panelling-and-shelving-system">
Wall Panelling & Shelving System
</Link>
</li>
<li>
<Link href="/collections/surfaces">
Surface
</Link>
</li>
</ul>
</Col>
{/* Policies */}
<Col lg={4} md={6} className="footer-cotent ps-md-4">
<h6 className="mb-3">Policies</h6>
<ul className="list-unstyled">
<li className="mb-2">
<Link href="/privacy-policy">
Privacy Policy
</Link>
</li>
<li className="mb-2">
<Link href="/terms">
Terms and Conditions
</Link>
</li>
<li className="mb-2">
<Link href="/cookie-policy">
Cookie Policy
</Link>
</li>
<li>
<Link href="/sitemap">
Sitemap
</Link>
</li>
</ul>
</Col>
</Row>
</Col>
</Row>
</Container>
{/* Bottom bar */}
<div className="footer-bottom py-3">
<Container className="custom_container d-flex flex-column flex-md-row justify-content-between align-items-center">
<span className="copyright">Copyright ©2026 Akruti Luxe. All rights reserved.</span>
<div className="social-icons d-flex gap-3 mt-3 mt-md-0">
<Link href="https://linkedin.com" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</Link>
<Link href="https://instagram.com" target="_blank">
<i class="fa-brands fa-instagram"></i>
</Link>
<Link href="https://youtube.com" target="_blank">
<i class="fa-brands fa-youtube"></i>
</Link>
<Link href="https://x.com" target="_blank">
<i class="fa-brands fa-square-twitter"></i>
</Link>
<Link href="https://facebook.com" target="_blank">
<i class="fa-brands fa-square-facebook"></i>
</Link>
</div>
</Container>
</div>
</footer>
);
};
export default Footer;