2 Commits

Author SHA1 Message Date
900d1380c2 Merge version_2 into main
Merge version_2 into main
2026-06-01 12:41:52 +00:00
e17172310b Update src/app/page.tsx 2026-06-01 12:41:46 +00:00

View File

@@ -5,13 +5,13 @@ import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Calendar, Home, Smile } from "lucide-react"; import { Calendar, Home, Smile } from "lucide-react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -29,86 +29,56 @@ export default function LandingPage() {
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "#hero"},
id: "#hero",
},
{ {
name: "About", name: "About", id: "#about"},
id: "#about",
},
{ {
name: "Properties", name: "Properties", id: "#properties"},
id: "#properties",
},
{ {
name: "Services", name: "Services", id: "#services"},
id: "#services",
},
{ {
name: "Testimonials", name: "Testimonials", id: "#testimonials"},
id: "#testimonials",
},
{ {
name: "Contact", name: "Contact", id: "#contact"},
id: "#contact",
},
]} ]}
button={{ button={{
text: "Inquire Now", text: "Inquire Now", href: "#contact"}}
href: "#contact",
}}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EXGFqWKsuhbBwC0uBJbZkPy6so/uploaded-1780317418510-x5kku9jk.jpg" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EXGFqWKsuhbBwC0uBJbZkPy6so/uploaded-1780317418510-x5kku9jk.jpg"
logoAlt="AL FAjR ASSOCIATES logo" logoAlt="AL FAjR ASSOCIATES logo"
brandName="AL FAjR ASSOCIATES" brandName="AL FAjR ASSOCIATES"
bottomLeftText="Global Presence"
bottomRightText="info@alfajrassociates.com"
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboardGallery
background={{ background={{
variant: "radial-gradient", variant: "radial-gradient"}}
}}
title="Your Dream Property Awaits" title="Your Dream Property Awaits"
description="Discover exquisite homes, luxurious apartments, and lucrative commercial spaces with AL FAjR ASSOCIATES, your trusted real estate partner." description="Discover exquisite homes, luxurious apartments, and lucrative commercial spaces with AL FAjR ASSOCIATES, your trusted real estate partner."
buttons={[ buttons={[
{ {
text: "View Properties", text: "View Properties", href: "#properties"},
href: "#properties",
},
{ {
text: "Contact Us", text: "Contact Us", href: "#contact"},
href: "#contact",
},
]} ]}
mediaItems={[ mediaItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-fashion-sport-woman-posing-outdoor-summer-hot-weather-bikini-pool_231208-6836.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-fashion-sport-woman-posing-outdoor-summer-hot-weather-bikini-pool_231208-6836.jpg", imageAlt: "Luxury villa exterior with modern architecture"},
imageAlt: "Luxury villa exterior with modern architecture",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dreamy-aesthetic-landscape_23-2151445735.jpg", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dreamy-aesthetic-landscape_23-2151445735.jpg", imageAlt: "Modern apartment interior with minimalist design"},
imageAlt: "Modern apartment interior with minimalist design",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/census-concept-photographed-town_23-2148993148.jpg", imageSrc: "http://img.b2bpic.net/free-photo/census-concept-photographed-town_23-2148993148.jpg", imageAlt: "Commercial building facade with modern glass"},
imageAlt: "Commercial building facade with modern glass",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/hotel-sea-holiday-building-coast_1253-650.jpg", imageSrc: "http://img.b2bpic.net/free-photo/hotel-sea-holiday-building-coast_1253-650.jpg", imageAlt: "Luxury beachfront property with tropical surroundings"},
imageAlt: "Luxury beachfront property with tropical surroundings",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/mother-with-little-son-autumn-park_1303-17352.jpg", imageSrc: "http://img.b2bpic.net/free-photo/mother-with-little-son-autumn-park_1303-17352.jpg", imageAlt: "Suburban house in a family-friendly neighborhood"},
imageAlt: "Suburban house in a family-friendly neighborhood",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-posed-outdoor-terrace-with-christmas-decorations-garland-deer_627829-6947.jpg",
imageAlt: "Penthouse apartment with city panorama view",
},
]} ]}
mediaAnimation="blur-reveal"
/> />
</div> </div>
@@ -129,23 +99,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Buying Property", title: "Buying Property", description: "Navigate the buying process with confidence. Our experts help you find the perfect home or investment opportunity.", imageSrc: "http://img.b2bpic.net/free-photo/real-estate-agent-handing-house-key-clients_53876-14621.jpg", imageAlt: "Couple receiving keys to a new house"},
description: "Navigate the buying process with confidence. Our experts help you find the perfect home or investment opportunity.",
imageSrc: "http://img.b2bpic.net/free-photo/real-estate-agent-handing-house-key-clients_53876-14621.jpg",
imageAlt: "Couple receiving keys to a new house",
},
{ {
title: "Selling Property", title: "Selling Property", description: "Achieve the best value for your property. We handle everything from market analysis to closing the deal efficiently.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office_1157-21871.jpg", imageAlt: "For sale sign in front of a house"},
description: "Achieve the best value for your property. We handle everything from market analysis to closing the deal efficiently.",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office_1157-21871.jpg",
imageAlt: "For sale sign in front of a house",
},
{ {
title: "Renting & Leasing", title: "Renting & Leasing", description: "Discover a wide selection of residential and commercial properties available for rent or lease tailored to your requirements.", imageSrc: "http://img.b2bpic.net/free-photo/architects-working-with-drawings-desk-office_1262-18372.jpg", imageAlt: "Person reviewing a rental contract"},
description: "Discover a wide selection of residential and commercial properties available for rent or lease tailored to your requirements.",
imageSrc: "http://img.b2bpic.net/free-photo/architects-working-with-drawings-desk-office_1262-18372.jpg",
imageAlt: "Person reviewing a rental contract",
},
]} ]}
title="Our Comprehensive Real Estate Services" title="Our Comprehensive Real Estate Services"
description="From residential sales to commercial leasing, our diverse range of services is designed to meet your every need with expertise and dedication." description="From residential sales to commercial leasing, our diverse range of services is designed to meet your every need with expertise and dedication."
@@ -160,65 +118,23 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "p1", id: "p1", brand: "Luxury Homes", name: "Modern Riverside Villa", price: "AED 5,200,000", rating: 5,
brand: "Luxury Homes", reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/charming-white-colonial-home-with-welcoming-front-porch_23-2151974396.jpg", imageAlt: "Modern Riverside Villa"},
name: "Modern Riverside Villa",
price: "AED 5,200,000",
rating: 5,
reviewCount: "120",
imageSrc: "http://img.b2bpic.net/free-photo/charming-white-colonial-home-with-welcoming-front-porch_23-2151974396.jpg",
imageAlt: "Modern Riverside Villa",
},
{ {
id: "p2", id: "p2", brand: "City Living", name: "Downtown Sky Apartment", price: "AED 1,850,000", rating: 4,
brand: "City Living", reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/group-people-communicating-office_23-2147668820.jpg", imageAlt: "Downtown Sky Apartment"},
name: "Downtown Sky Apartment",
price: "AED 1,850,000",
rating: 4,
reviewCount: "85",
imageSrc: "http://img.b2bpic.net/free-photo/group-people-communicating-office_23-2147668820.jpg",
imageAlt: "Downtown Sky Apartment",
},
{ {
id: "p3", id: "p3", brand: "Business Spaces", name: "Prime Commercial Office", price: "AED 7,500,000", rating: 5,
brand: "Business Spaces", reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/corporate-businesswoman-beige-suit-silhouette-young-corporate-woman-with-documents-laptop_1258-119507.jpg", imageAlt: "Prime Commercial Office"},
name: "Prime Commercial Office",
price: "AED 7,500,000",
rating: 5,
reviewCount: "95",
imageSrc: "http://img.b2bpic.net/free-photo/corporate-businesswoman-beige-suit-silhouette-young-corporate-woman-with-documents-laptop_1258-119507.jpg",
imageAlt: "Prime Commercial Office",
},
{ {
id: "p4", id: "p4", brand: "Investment Plots", name: "Beachfront Development Plot", price: "AED 3,100,000", rating: 4,
brand: "Investment Plots", reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/weather-effects-collage-concept_23-2150062066.jpg", imageAlt: "Beachfront Development Plot"},
name: "Beachfront Development Plot",
price: "AED 3,100,000",
rating: 4,
reviewCount: "40",
imageSrc: "http://img.b2bpic.net/free-photo/weather-effects-collage-concept_23-2150062066.jpg",
imageAlt: "Beachfront Development Plot",
},
{ {
id: "p5", id: "p5", brand: "Family Homes", name: "Spacious Suburban Residence", price: "AED 2,750,000", rating: 5,
brand: "Family Homes", reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/housing-mansion-residentail-dwelling-architecture_53876-30337.jpg", imageAlt: "Spacious Suburban Residence"},
name: "Spacious Suburban Residence",
price: "AED 2,750,000",
rating: 5,
reviewCount: "150",
imageSrc: "http://img.b2bpic.net/free-photo/housing-mansion-residentail-dwelling-architecture_53876-30337.jpg",
imageAlt: "Spacious Suburban Residence",
},
{ {
id: "p6", id: "p6", brand: "Urban Lofts", name: "Chic City Center Loft", price: "AED 1,300,000", rating: 4,
brand: "Urban Lofts", reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/abstract-city-building-shadows_23-2149283239.jpg", imageAlt: "Chic City Center Loft"},
name: "Chic City Center Loft",
price: "AED 1,300,000",
rating: 4,
reviewCount: "60",
imageSrc: "http://img.b2bpic.net/free-photo/abstract-city-building-shadows_23-2149283239.jpg",
imageAlt: "Chic City Center Loft",
},
]} ]}
title="Featured Properties" title="Featured Properties"
description="Explore a selection of our finest listings, curated to meet diverse preferences and investment goals across residential and commercial sectors." description="Explore a selection of our finest listings, curated to meet diverse preferences and investment goals across residential and commercial sectors."
@@ -233,25 +149,13 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
metrics={[ metrics={[
{ {
id: "m1", id: "m1", value: "2500+", title: "Properties Sold", description: "Successfully brokered transactions for happy clients.", icon: Home,
value: "2500+",
title: "Properties Sold",
description: "Successfully brokered transactions for happy clients.",
icon: Home,
}, },
{ {
id: "m2", id: "m2", value: "15+", title: "Years in Business", description: "Decades of trusted experience in real estate.", icon: Calendar,
value: "15+",
title: "Years in Business",
description: "Decades of trusted experience in real estate.",
icon: Calendar,
}, },
{ {
id: "m3", id: "m3", value: "98%", title: "Client Satisfaction", description: "Our clients consistently praise our service and results.", icon: Smile,
value: "98%",
title: "Client Satisfaction",
description: "Our clients consistently praise our service and results.",
icon: Smile,
}, },
]} ]}
title="Our Achievements by the Numbers" title="Our Achievements by the Numbers"
@@ -267,25 +171,15 @@ export default function LandingPage() {
author="Ahmad Al-Fajr" author="Ahmad Al-Fajr"
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17869.jpg", src: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17869.jpg", alt: "Sarah Johnson"},
alt: "Sarah Johnson",
},
{ {
src: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg", src: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg", alt: "Michael Chen"},
alt: "Michael Chen",
},
{ {
src: "http://img.b2bpic.net/free-photo/successful-multiethnic-business-team_1262-20833.jpg", src: "http://img.b2bpic.net/free-photo/successful-multiethnic-business-team_1262-20833.jpg", alt: "Emily Rodriguez"},
alt: "Emily Rodriguez",
},
{ {
src: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg", src: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg", alt: "David Kim"},
alt: "David Kim",
},
{ {
src: "http://img.b2bpic.net/free-photo/happy-smiling-saleswoman-beige-suit-celebrates-her-achievement-triumphing-making-fist-pump_1258-194118.jpg", src: "http://img.b2bpic.net/free-photo/happy-smiling-saleswoman-beige-suit-celebrates-her-achievement-triumphing-making-fist-pump_1258-194118.jpg", alt: "Jessica Lee"},
alt: "Jessica Lee",
},
]} ]}
ratingAnimation="blur-reveal" ratingAnimation="blur-reveal"
avatarsAnimation="slide-up" avatarsAnimation="slide-up"
@@ -296,20 +190,15 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "radial-gradient", variant: "radial-gradient"}}
}}
tag="Get in Touch" tag="Get in Touch"
title="Ready to Find Your Next Property?" title="Ready to Find Your Next Property?"
description="Our expert team at AL FAjR ASSOCIATES is here to help you navigate the market, answer your questions, and achieve your real estate goals with ease." description="Our expert team at AL FAjR ASSOCIATES is here to help you navigate the market, answer your questions, and achieve your real estate goals with ease."
buttons={[ buttons={[
{ {
text: "Call Us Now", text: "Call Us Now", href: "tel:+97112345678"},
href: "tel:+97112345678",
},
{ {
text: "Send an Inquiry", text: "Send an Inquiry", href: "mailto:info@alfajrassociates.com"},
href: "mailto:info@alfajrassociates.com",
},
]} ]}
/> />
</div> </div>
@@ -323,54 +212,33 @@ export default function LandingPage() {
logoText="AL FAjR ASSOCIATES" logoText="AL FAjR ASSOCIATES"
columns={[ columns={[
{ {
title: "Quick Links", title: "Quick Links", items: [
items: [
{ {
label: "Home", label: "Home", href: "#hero"},
href: "#hero",
},
{ {
label: "About Us", label: "About Us", href: "#about"},
href: "#about",
},
{ {
label: "Properties", label: "Properties", href: "#properties"},
href: "#properties",
},
], ],
}, },
{ {
title: "Services", title: "Services", items: [
items: [
{ {
label: "Buy Property", label: "Buy Property", href: "#services"},
href: "#services",
},
{ {
label: "Sell Property", label: "Sell Property", href: "#services"},
href: "#services",
},
{ {
label: "Rent Property", label: "Rent Property", href: "#services"},
href: "#services",
},
], ],
}, },
{ {
title: "Contact", title: "Contact", items: [
items: [
{ {
label: "Inquire Now", label: "Inquire Now", href: "#contact"},
href: "#contact",
},
{ {
label: "Email Us", label: "Email Us", href: "mailto:info@alfajrassociates.com"},
href: "mailto:info@alfajrassociates.com",
},
{ {
label: "Call Us", label: "Call Us", href: "tel:+97112345678"},
href: "tel:+97112345678",
},
], ],
}, },
]} ]}