Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-03 16:48:01 +00:00

View File

@@ -9,8 +9,10 @@ import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwen
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import Link from 'next/link';
import { Home, Star, Sparkles, Heart, CheckCircle, BriefcaseConvex, Paintbrush2 } from 'lucide-react';
import { Home, Star, Sparkles, Heart, CheckCircle, Briefcase, Paintbrush2, Users, Mail } from 'lucide-react';
export default function HomePage() {
const navItems = [
@@ -158,7 +160,7 @@ export default function HomePage() {
tagAnimation="slide-up"
features={[
{
title: "Expert Property Consultation", description: "Personalized guidance from certified luxury real estate specialists with decades of combined experience in high-end markets.", icon: BriefcaseConvex,
title: "Expert Property Consultation", description: "Personalized guidance from certified luxury real estate specialists with decades of combined experience in high-end markets.", icon: Briefcase,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mature-professional-explaining-agreement-details-young-customers_74855-10269.jpg", imageAlt: "Real estate expert consultation"
@@ -252,6 +254,49 @@ export default function HomePage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
title="Meet Our Expert Team"
description="Experienced luxury real estate professionals dedicated to your success"
tag="Our Agents"
tagIcon={Users}
tagAnimation="slide-up"
members={[
{
id: "1", name: "Catherine Ashford", role: "Senior Luxury Agent", imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Catherine Ashford - Senior Luxury Agent"
},
{
id: "2", name: "Richard Whitmore", role: "Waterfront Specialist", imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Richard Whitmore - Waterfront Specialist"
},
{
id: "3", name: "Elena Rodriguez", role: "Investment Property Expert", imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-posing-near-office-building_1262-21023.jpg", imageAlt: "Elena Rodriguez - Investment Property Expert"
},
{
id: "4", name: "Christopher Lane", role: "Private Estate Consultant", imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Christopher Lane - Private Estate Consultant"
}
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttonAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Get in Touch"
tagIcon={Mail}
title="Ready to Find Your Luxury Home?"
description="Connect with our expert team to schedule a private viewing or discuss your real estate goals. We're committed to providing white-glove service."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
inputPlaceholder="Your email address"
buttonText="Schedule Consultation"
termsText="We respect your privacy and will contact you within 24 hours to confirm your preferred viewing time."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}