Footer.js
4.94 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
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 py-5">
<Row className="gy-4">
{/* Left - Logo + Contact Info */}
<Col lg={3} md={6} className="footer-cotent">
<Image
src="/image/footer-logo.png"
alt="logo"
width={180}
height={40}
className="mb-3"
/>
<ul className="list-unstyled">
<li className="d-flex mb-3 gap-2">
<i className="fa-solid fa-location-dot"></i>
<span>
9th Floor, Nirmal Building, Nariman Point,
<br /> Mumbai – 400021, Maharashtra, India
</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>
{/* Quick Links */}
<Col lg={3} md={6} className="footer-cotent ps-md-4">
<h6 className="fw-bold mb-3">Quick Links</h6>
<ul className="list-unstyled">
<li className="mb-3">
<Link href="/about">
About
</Link>
</li>
<li className="mb-3">
<Link href="/collections">
Collections
</Link>
</li>
<li className="mb-3">
<Link href="/brands">
Brands
</Link>
</li>
<li className="mb-3">
<Link href="/products">
Products
</Link>
</li>
<li>
<Link href="/projects">
Projects
</Link>
</li>
</ul>
</Col>
{/* Collections */}
<Col lg={3} md={6} className="footer-cotent ps-md-4">
<h6 className="fw-bold mb-3">Collections</h6>
<ul className="list-unstyled">
<li className="mb-3">
<Link href="/collections/kitchens">
Kitchens
</Link>
</li>
<li className="mb-3">
<Link href="/collections/wardrobes">
Wardrobes and Systems
</Link>
</li>
<li>
<Link href="/collections/surface">
Surface
</Link>
</li>
</ul>
</Col>
{/* Policies */}
<Col lg={3} md={6} className="ps-md-4">
<h6 className="fw-bold mb-3">Policies</h6>
<ul className="list-unstyled">
<li className="mb-3">
<Link href="/privacy-policy">
Privacy Policy
</Link>
</li>
<li className="mb-3">
<Link href="/terms">
Terms and Conditions
</Link>
</li>
<li className="mb-3">
<Link href="/cookie-policy">
Cookie Policy
</Link>
</li>
<li>
<Link href="/sitemap">
Sitemap
</Link>
</li>
</ul>
</Col>
</Row>
</Container>
{/* Bottom bar */}
<div className="footer-bottom py-3">
<Container className="d-flex flex-column flex-md-row justify-content-between align-items-center">
<span>Copyright ©2025 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;