5 Commits

Author SHA1 Message Date
7307676554 Merge version_2 into main
Merge version_2 into main
2026-04-06 11:37:42 +00:00
c25a3db8a1 Update src/app/page.tsx 2026-04-06 11:37:39 +00:00
a0a6c09d18 Merge version_1 into main
Merge version_1 into main
2026-04-06 11:33:44 +00:00
9da8a958be Merge version_1 into main
Merge version_1 into main
2026-04-06 11:33:18 +00:00
78b98093af Merge version_1 into main
Merge version_1 into main
2026-04-06 11:32:51 +00:00

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -143,38 +143,35 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/modern-shopping-center-atrium_23-2148704207.jpg"
logoText="Serena Centre"
columns={[
{
title: "Explore", items: [
{
label: "About Us", href: "#about"},
{
label: "Store Directory", href: "#products"},
],
title: "Mall Information", items: [
{ label: "About Us", href: "#about" },
{ label: "Opening Hours", href: "#" },
{ label: "Location", href: "#" }
]
},
{
title: "Concierge", items: [
{
label: "Private Bookings", href: "#contact"},
{
label: "Mall Services", href: "#"},
],
title: "Store Directory", items: [
{ label: "Fashion", href: "#products" },
{ label: "Dining", href: "#products" },
{ label: "Services", href: "#" }
]
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Use", href: "#"},
],
},
title: "Support (EN/AR)", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Use", href: "#" },
{ label: "Contact Us", href: "#contact" }
]
}
]}
bottomLeftText="© 2024 Serena Centre by Dubai Retail"
bottomRightText="Dubai, UAE"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}