Update src/app/page.tsx

This commit is contained in:
2026-02-17 02:27:24 +00:00
parent 64d52023dc
commit 0a95047334

View File

@@ -2,14 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import AboutMetric from '@/components/sections/about/AboutMetric';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Home, Building2, BarChart3, FileText, TrendingUp, Users, Award, Phone } from 'lucide-react';
import { Home, Building2, BarChart3, FileText, TrendingUp, Users, Award, Phone, Sparkles } from 'lucide-react';
import Link from 'next/link';
export default function HomePage() {
@@ -42,26 +42,18 @@ export default function HomePage() {
</div>
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="DUBAI REALTY"
description="Discover premium properties across Dubai's most exclusive neighborhoods. From luxury villas to stunning penthouses, find your perfect home in paradise."
<HeroBillboard
title="Discover Luxury Living in Dubai"
description="Experience the pinnacle of luxury real estate across Dubai's most exclusive neighborhoods. From iconic penthouses in Marina to sprawling villas in Arabian Ranches, find your dream property in paradise."
background={{ variant: "sparkles-gradient" }}
tag="Premium Properties"
tagIcon={Sparkles}
buttons={[
{ text: "Explore Properties", href: "/properties" },
{ text: "Schedule Tour", href: "/contact" }
]}
slides={[
{
imageSrc: "https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg", imageAlt: "Luxury Villa in Dubai"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/futuristic-landscape-dubai_23-2151339807.jpg", imageAlt: "Dubai Skyline Apartment"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/ai-generated-house-design_23-2150666220.jpg", imageAlt: "Waterfront Property Dubai"
}
]}
autoplayDelay={5000}
showDimOverlay={true}
imageSrc="https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg"
imageAlt="Luxury Dubai Property"
/>
</div>
@@ -116,8 +108,7 @@ export default function HomePage() {
},
{
icon: Building2,
title: "Investment Advisory",
description: "Expert guidance on real estate investments with detailed market analysis and ROI projections for savvy investors."
title: "Investment Advisory", description: "Expert guidance on real estate investments with detailed market analysis and ROI projections for savvy investors."
},
{
icon: BarChart3,
@@ -237,4 +228,4 @@ export default function HomePage() {
/>
</ThemeProvider>
);
}
}