14 Commits

Author SHA1 Message Date
8064c80bf1 Merge version_8 into main
Merge version_8 into main
2026-05-10 21:43:34 +00:00
3ab25c6473 Update src/app/page.tsx 2026-05-10 21:43:28 +00:00
4e44f12694 Merge version_7 into main
Merge version_7 into main
2026-05-10 21:37:11 +00:00
a5112b66da Update src/app/page.tsx 2026-05-10 21:37:08 +00:00
4136a6a0ab Merge version_7 into main
Merge version_7 into main
2026-05-10 21:36:44 +00:00
8ed991c55d Update src/app/page.tsx 2026-05-10 21:36:38 +00:00
fd3abfd445 Merge version_6 into main
Merge version_6 into main
2026-05-10 21:23:36 +00:00
0a3100e7a8 Update src/app/page.tsx 2026-05-10 21:23:33 +00:00
5544411352 Merge version_5 into main
Merge version_5 into main
2026-05-10 21:21:55 +00:00
462dd88331 Update src/app/page.tsx 2026-05-10 21:21:52 +00:00
acc5372e94 Merge version_5 into main
Merge version_5 into main
2026-05-10 21:12:33 +00:00
3aa75399fc Update src/app/page.tsx 2026-05-10 21:12:31 +00:00
348565af12 Merge version_4 into main
Merge version_4 into main
2026-05-10 21:10:52 +00:00
18519e8122 Merge version_4 into main
Merge version_4 into main
2026-05-10 21:08:01 +00:00

View File

@@ -2,16 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TextAbout from '@/components/sections/about/TextAbout';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
export default function LandingPage() {
return (
@@ -29,40 +28,34 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Properties", id: "properties" },
{ name: "Contact", id: "contact" },
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/uploaded-1778446079029-gwdmqa3e.jpg"
brandName="Bright View"
button={{ text: "Get Started" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="Luxury Real Estate Redefined for You"
description="Discover premium properties in world-class locations. Bright View connects discerning investors with exceptional opportunities that combine prestige, growth, and lifestyle excellence."
<HeroSplitTestimonial
title="Luxury Redefined for the Modern Investor"
description="Exceptional properties curated with precision and elegance."
background={{ variant: "gradient-bars" }}
testimonials={[
{ name: "James Anderson", handle: "@janderson", testimonial: "Bright View's expertise in luxury real estate is unmatched.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/iconic-view-of-burj-khalifa-in-dubai-at--1778446101474-0c0c55f9.png?_wi=1" },
{ name: "Elena Rodriguez", handle: "@erodriguez", testimonial: "The portfolio provided was exactly what I was looking for.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/uploaded-1778446079029-gwdmqa3e.jpg" },
{ name: "Marcus Thorne", handle: "@mthorne", testimonial: "Professional, transparent, and absolutely high-end results.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/luxury-modern-interior-living-room-in-a--1778446111043-449abad5.png?_wi=1" },
{ name: "Elena V.", handle: "@elena_v", testimonial: "The service and attention to detail were unmatched.", rating: 5 }
]}
buttons={[
{ text: "Explore Properties", href: "#properties" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/uploaded-1778447371471-ey92r1wm.jpg"
showBlur={true}
textPosition="bottom"
buttons={[{ text: "View Gallery" }]}
/>
</div>
<div id="about" data-section="about">
<TextAbout
<InlineImageSplitTextAbout
useInvertedBackground={false}
title="Defining Excellence in Global Luxury Real Estate"
heading={[{ type: 'text', content: "Defining Excellence in Global Luxury Real Estate" }]}
buttons={[
{ text: "Contact Us", href: "#contact" },
]}
@@ -70,55 +63,37 @@ export default function LandingPage() {
</div>
<div id="properties" data-section="properties">
<ProductCardThree
<ProductCardFour
animationType="slide-up"
textboxLayout="split"
gridVariant="bento-grid"
useInvertedBackground={true}
products={[
{ id: "1", name: "Skyline Penthouse", price: "$8.5M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/luxury-modern-interior-living-room-in-a--1778446111043-449abad5.png?_wi=2" },
{ id: "2", name: "Coastal Villa Estate", price: "$12.0M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/luxury-marble-bathroom-in-a-high-end-man-1778446120861-578eaa11.png?_wi=2" },
{ id: "3", name: "Modern Urban Mansion", price: "$6.2M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/ultra-luxury-modern-kitchen-in-a-villa-m-1778446131050-16452c77.png?_wi=2" },
{ id: "1", name: "Skyline Penthouse", price: "$8.5M", variant: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/luxury-modern-interior-living-room-in-a--1778446111043-449abad5.png?_wi=2" },
{ id: "2", name: "Coastal Villa Estate", price: "$12.0M", variant: "Ultra", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/luxury-marble-bathroom-in-a-high-end-man-1778446120861-578eaa11.png?_wi=2" },
{ id: "3", name: "Modern Urban Mansion", price: "$6.2M", variant: "Luxury", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/ultra-luxury-modern-kitchen-in-a-villa-m-1778446131050-16452c77.png?_wi=2" },
]}
title="Curated Luxury Portfolio"
description="Exceptional homes for the discerning investor."
buttons={[
{ text: "View Full Portfolio", href: "/inventory" },
{ text: "Explore", href: "#properties" }
]}
buttons={[{ text: "View Full Portfolio" }]}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardSeven
animationType="depth-3d"
textboxLayout="split"
<MetricCardFourteen
title="Market Authority"
tag="Exclusive"
useInvertedBackground={false}
metrics={[
{ id: "1", value: "$500M+", title: "Portfolio Managed", items: ["Commercial", "Residential"] },
{ id: "2", value: "150+", title: "Closed Deals", items: ["Premium", "Global"] },
{ id: "3", value: "20+", title: "Countries", items: ["Operations", "Reach"] },
{ id: "1", value: "$500M+", description: "Portfolio Managed" },
{ id: "2", value: "150+", description: "Closed Deals" },
{ id: "3", value: "20+", description: "Active Countries" },
]}
title="Market Authority"
description="Evidence-backed excellence in every transaction."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah J.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/professional-headshot-of-a-sophisticated-1778446163791-8c554892.png" },
{ id: "2", name: "Michael K.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DXy8yrvjnxPhDkl0lrG4JRwPo3/professional-headshot-of-a-female-entrep-1778446172217-98695c25.png" },
]}
cardTitle="Client Success Stories"
cardTag="Testimonials"
cardAnimation="blur-reveal"
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
faqs={[
@@ -142,22 +117,24 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactCTA
tag="Connect"
title="Begin Your Journey With Us"
description="Reach out to our expert team for personalized real estate guidance and consultation."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
tag="Inquire"
title="Begin Your Journey"
description="Reach out for exclusive investment opportunities."
buttons={[{ text: "Inquire Today", href: "#contact" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterLogoReveal
logoText="Bright View"
copyrightText="© 2025 Bright View Real Estate | All Rights Reserved"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}