Update src/app/page.tsx

This commit is contained in:
2026-02-17 08:51:21 +00:00
parent 346e496dc5
commit 824cd1e21e

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
@@ -41,7 +41,7 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboard
<HeroBillboardGallery
title="Discover Luxury Living in Dubai"
description="Exclusive properties curated for discerning buyers. Experience the pinnacle of sophistication with our award-winning real estate portfolio."
background={{ variant: "plain" }}
@@ -51,8 +51,17 @@ export default function LandingPage() {
{ text: "Explore Properties", href: "properties" },
{ text: "Contact Agent", href: "contact" }
]}
imageSrc="https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg"
imageAlt="Luxury penthouse in Dubai Marina"
images={[
{
src: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg", alt: "Luxury penthouse in Dubai Marina"
},
{
src: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg", alt: "Dubai skyline at night"
},
{
src: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg", alt: "Modern luxury exterior design"
}
]}
/>
</div>