Merge version_1 into main #2

Merged
bender merged 3 commits from version_1 into main 2026-03-13 16:04:46 +00:00
3 changed files with 60 additions and 238 deletions

View File

@@ -11,36 +11,29 @@ import { Award, Users, Zap } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Properties", id: "properties" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Properties", id: "/properties" },
{ name: "About", id: "/about" },
];
const footerColumns = [
{
title: "Navigation",
items: [
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Properties", href: "/properties" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
],
},
{
title: "Company",
items: [
{ label: "Our Team", href: "/team" },
title: "Company", items: [
{ label: "Our Team", href: "/about" },
{ label: "Our Story", href: "/about" },
{ label: "Careers", href: "#" },
{ label: "Press", href: "#" },
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Email", href: "mailto:hello@prestigeestates.com" },
{ label: "Schedule Call", href: "#" },
{ label: "Office Locations", href: "#" },
@@ -97,26 +90,11 @@ export default function AboutPage() {
animationType="scale-rotate"
members={[
{
id: "member-1",
name: "Victoria Sterling",
role: "Founder & CEO",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tfy4db&_wi=2",
imageAlt: "Victoria Sterling, founder and CEO of Prestige Estates",
},
id: "member-1", name: "Victoria Sterling", role: "Founder & CEO", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tfy4db", imageAlt: "Victoria Sterling, founder and CEO of Prestige Estates"},
{
id: "member-2",
name: "James Patterson",
role: "Chief Investment Officer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bankjf&_wi=2",
imageAlt: "James Patterson, chief investment officer",
},
id: "member-2", name: "James Patterson", role: "Chief Investment Officer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bankjf", imageAlt: "James Patterson, chief investment officer"},
{
id: "member-3",
name: "Elena Martinez",
role: "Global Operations Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=psz3cn&_wi=2",
imageAlt: "Elena Martinez, global operations director",
},
id: "member-3", name: "Elena Martinez", role: "Global Operations Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=psz3cn", imageAlt: "Elena Martinez, global operations director"},
]}
useInvertedBackground={false}
containerClassName="py-16 md:py-24"
@@ -136,25 +114,13 @@ export default function AboutPage() {
animationType="scale-rotate"
metrics={[
{
id: "metric-1",
value: "500+",
title: "Transactions Completed",
description: "Successful closings representing premium properties across global markets",
icon: Award,
id: "metric-1", value: "500+", title: "Transactions Completed", description: "Successful closings representing premium properties across global markets", icon: Award,
},
{
id: "metric-2",
value: "98%",
title: "Client Satisfaction",
description: "Consistently rated excellent by our discerning clientele",
icon: Users,
id: "metric-2", value: "98%", title: "Client Satisfaction", description: "Consistently rated excellent by our discerning clientele", icon: Users,
},
{
id: "metric-3",
value: "$2.5B+",
title: "Sales Volume",
description: "Cumulative transaction value reflecting market trust and expertise",
icon: Zap,
id: "metric-3", value: "$2.5B+", title: "Sales Volume", description: "Cumulative transaction value reflecting market trust and expertise", icon: Zap,
},
]}
useInvertedBackground={false}

View File

@@ -12,40 +12,33 @@ import TeamCardSix from "@/components/sections/team/TeamCardSix";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, Award, Star, Zap, CheckCircle, Users, Phone } from "lucide-react";
import { Sparkles, Award, Star, Zap, CheckCircle, Users, Phone, ThumbsUp, Clock, TrendingUp } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Properties", id: "properties" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Properties", id: "/properties" },
{ name: "About", id: "/about" },
];
const footerColumns = [
{
title: "Navigation",
items: [
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Properties", href: "/properties" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
],
},
{
title: "Company",
items: [
{ label: "Our Team", href: "/team" },
title: "Company", items: [
{ label: "Our Team", href: "/about" },
{ label: "Our Story", href: "/about" },
{ label: "Careers", href: "#" },
{ label: "Press", href: "#" },
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Email", href: "mailto:hello@prestigeestates.com" },
{ label: "Schedule Call", href: "#" },
{ label: "Office Locations", href: "#" },
@@ -85,7 +78,7 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[
{ text: "Explore Properties", href: "/properties" },
{ text: "Schedule Viewing", href: "/contact" },
{ text: "Schedule Viewing", href: "#contact" },
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bazqww"
@@ -132,31 +125,15 @@ export default function HomePage() {
animationType="scale-rotate"
products={[
{
id: "prop-1",
name: "Modern Penthouse - Manhattan",
price: "$8.5M",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82&_wi=1",
imageAlt: "Luxury penthouse with panoramic city views and contemporary interior",
},
id: "prop-1", name: "Modern Penthouse - Manhattan", price: "$8.5M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82", imageAlt: "Luxury penthouse with panoramic city views and contemporary interior"},
{
id: "prop-2",
name: "Beachfront Villa - Miami",
price: "$12M",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=59ldfm&_wi=1",
imageAlt: "Exclusive beachfront property with ocean views and modern architecture",
},
id: "prop-2", name: "Beachfront Villa - Miami", price: "$12M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=59ldfm", imageAlt: "Exclusive beachfront property with ocean views and modern architecture"},
{
id: "prop-3",
name: "Private Estate - Beverly Hills",
price: "$15.2M",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xgdvt&_wi=1",
imageAlt: "Luxury estate mansion with manicured grounds and premium amenities",
},
id: "prop-3", name: "Private Estate - Beverly Hills", price: "$15.2M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xgdvt", imageAlt: "Luxury estate mansion with manicured grounds and premium amenities"},
]}
useInvertedBackground={false}
containerClassName="py-16 md:py-24"
titleClassName="text-4xl md:text-5xl font-bold"
cardClassName="hover:shadow-lg transition-shadow"
/>
</div>
@@ -172,25 +149,13 @@ export default function HomePage() {
animationType="scale-rotate"
metrics={[
{
id: "metric-1",
value: "98%",
title: "Client Satisfaction",
description: "Consistently exceeding expectations in every transaction",
icon: Award,
id: "metric-1", value: "98%", title: "Client Satisfaction", description: "Consistently exceeding expectations in every transaction", icon: ThumbsUp,
},
{
id: "metric-2",
value: "120 Days",
title: "Average Sale Time",
description: "Properties sold within 3-4 months on average",
icon: Star,
id: "metric-2", value: "120 Months", title: "Average Holding Period", description: "Properties sold within 3-4 months on average", icon: Clock,
},
{
id: "metric-3",
value: "$2.5B+",
title: "Transactions Managed",
description: "Cumulative sales volume across luxury markets",
icon: Zap,
id: "metric-3", value: "$2.5B+", title: "Transactions Managed", description: "Cumulative sales volume across luxury markets", icon: TrendingUp,
},
]}
useInvertedBackground={false}
@@ -211,26 +176,16 @@ export default function HomePage() {
showStepNumbers={true}
features={[
{
id: "service-1",
title: "Property Acquisition",
description: "Expert guidance in identifying and acquiring premium properties that match your investment goals and lifestyle preferences.",
phoneOne: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82&_wi=2",
},
id: "service-1", title: "Property Acquisition", description: "Expert guidance in identifying and acquiring premium properties that match your investment goals and lifestyle preferences.", phoneOne: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82"},
phoneTwo: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=59ldfm&_wi=2",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=59ldfm"},
},
{
id: "service-2",
title: "Market Analysis & Valuation",
description: "Data-driven insights into market trends, property valuations, and investment opportunities in luxury segments.",
phoneOne: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xgdvt&_wi=2",
},
id: "service-2", title: "Market Analysis & Valuation", description: "Data-driven insights into market trends, property valuations, and investment opportunities in luxury segments.", phoneOne: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xgdvt"},
phoneTwo: {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82&_wi=3",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82"},
},
]}
useInvertedBackground={false}
@@ -251,26 +206,11 @@ export default function HomePage() {
animationType="scale-rotate"
members={[
{
id: "member-1",
name: "Victoria Sterling",
role: "Senior Real Estate Advisor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tfy4db&_wi=1",
imageAlt: "Victoria Sterling, luxury real estate expert with 20 years experience",
},
id: "member-1", name: "Victoria Sterling", role: "Senior Real Estate Advisor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tfy4db", imageAlt: "Victoria Sterling, luxury real estate expert with 20 years experience"},
{
id: "member-2",
name: "James Patterson",
role: "Investment Strategy Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bankjf&_wi=1",
imageAlt: "James Patterson, investment strategy expert",
},
id: "member-2", name: "James Patterson", role: "Investment Strategy Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bankjf", imageAlt: "James Patterson, investment strategy expert"},
{
id: "member-3",
name: "Elena Martinez",
role: "International Properties Specialist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=psz3cn&_wi=1",
imageAlt: "Elena Martinez, international properties specialist",
},
id: "member-3", name: "Elena Martinez", role: "International Properties Specialist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=psz3cn", imageAlt: "Elena Martinez, international properties specialist"},
]}
useInvertedBackground={false}
containerClassName="py-16 md:py-24"
@@ -289,59 +229,17 @@ export default function HomePage() {
useInvertedBackground={false}
testimonials={[
{
id: "test-1",
title: "Seamless International Purchase",
quote: "The team made our international property acquisition effortless. Their expertise and attention to detail were exceptional.",
name: "Richard Hayes",
role: "CEO, Global Investments",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rcgcei",
imageAlt: "Richard Hayes, luxury property buyer",
},
id: "test-1", title: "Seamless International Purchase", quote: "The team made our international property acquisition effortless. Their expertise and attention to detail were exceptional.", name: "Richard Hayes", role: "CEO, Global Investments", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rcgcei", imageAlt: "Richard Hayes, luxury property buyer"},
{
id: "test-2",
title: "Outstanding Market Knowledge",
quote: "Their insights into market trends helped us identify the perfect investment opportunity. Highly professional team.",
name: "Sarah Thompson",
role: "Entrepreneur",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=37a2ze",
imageAlt: "Sarah Thompson, successful property investor",
},
id: "test-2", title: "Outstanding Market Knowledge", quote: "Their insights into market trends helped us identify the perfect investment opportunity. Highly professional team.", name: "Sarah Thompson", role: "Entrepreneur", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=37a2ze", imageAlt: "Sarah Thompson, successful property investor"},
{
id: "test-3",
title: "Luxury Experience Throughout",
quote: "From viewing to closing, every interaction reflected luxury and professionalism. Couldn't ask for better service.",
name: "Michael Chen",
role: "Executive",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5lxod4",
imageAlt: "Michael Chen, luxury real estate client",
},
id: "test-3", title: "Luxury Experience Throughout", quote: "From viewing to closing, every interaction reflected luxury and professionalism. Couldn't ask for better service.", name: "Michael Chen", role: "Executive", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5lxod4", imageAlt: "Michael Chen, luxury real estate client"},
{
id: "test-4",
title: "Expert Guidance and Support",
quote: "The agents understood my specific requirements and found exactly what I was looking for. Exceptional service.",
name: "Catherine Williams",
role: "Business Owner",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=hhqorr",
imageAlt: "Catherine Williams, property buyer",
},
id: "test-4", title: "Expert Guidance and Support", quote: "The agents understood my specific requirements and found exactly what I was looking for. Exceptional service.", name: "Catherine Williams", role: "Business Owner", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=hhqorr", imageAlt: "Catherine Williams, property buyer"},
{
id: "test-5",
title: "Perfect Investment Outcome",
quote: "Their strategic approach to pricing and marketing resulted in a sale beyond expectations. Truly impressive.",
name: "David Morrison",
role: "Property Investor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=x55kt0",
imageAlt: "David Morrison, successful real estate investor",
},
id: "test-5", title: "Perfect Investment Outcome", quote: "Their strategic approach to pricing and marketing resulted in a sale beyond expectations. Truly impressive.", name: "David Morrison", role: "Property Investor", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=x55kt0", imageAlt: "David Morrison, successful real estate investor"},
{
id: "test-6",
title: "Trusted Real Estate Partner",
quote: "I've worked with them on multiple properties. Consistency, reliability, and excellence in every engagement.",
name: "Jennifer Blake",
role: "Portfolio Manager",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0efl0h",
imageAlt: "Jennifer Blake, portfolio manager",
},
id: "test-6", title: "Trusted Real Estate Partner", quote: "I've worked with them on multiple properties. Consistency, reliability, and excellence in every engagement.", name: "Jennifer Blake", role: "Portfolio Manager", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0efl0h", imageAlt: "Jennifer Blake, portfolio manager"},
]}
containerClassName="py-16 md:py-24"
titleClassName="text-4xl md:text-5xl font-bold"
@@ -353,33 +251,19 @@ export default function HomePage() {
ctaTitle="Ready to Invest in Luxury?"
ctaDescription="Contact our team of experts to schedule a confidential consultation about your luxury real estate goals."
ctaButton={{
text: "Schedule Consultation",
href: "mailto:hello@prestigeestates.com",
}}
text: "Schedule Consultation", href: "mailto:hello@prestigeestates.com"}}
ctaIcon={Phone}
animationType="scale-rotate"
useInvertedBackground={false}
faqs={[
{
id: "faq-1",
title: "What is your typical property price range?",
content: "We specialize in luxury properties typically starting at $2M and exceeding $50M+. We work with clients across all segments of the luxury market.",
},
id: "faq-1", title: "What is your typical property price range?", content: "We specialize in luxury properties typically starting at $2M and exceeding $50M+. We work with clients across all segments of the luxury market."},
{
id: "faq-2",
title: "Do you assist with international purchases?",
content: "Yes, we have extensive experience with international acquisitions. Our team handles all aspects including currency exchange, international financing, and legal considerations.",
},
id: "faq-2", title: "Do you assist with international purchases?", content: "Yes, we have extensive experience with international acquisitions. Our team handles all aspects including currency exchange, international financing, and legal considerations."},
{
id: "faq-3",
title: "What areas do you serve?",
content: "While based in major luxury markets, we have connections and expertise across prime real estate locations globally, including Manhattan, Miami, Beverly Hills, and international destinations.",
},
id: "faq-3", title: "What areas do you serve?", content: "While based in major luxury markets, we have connections and expertise across prime real estate locations globally, including Manhattan, Miami, Beverly Hills, and international destinations."},
{
id: "faq-4",
title: "How do you ensure confidentiality?",
content: "Client confidentiality is paramount. We utilize discrete marketing strategies and confidential transaction protocols to protect your privacy throughout the process.",
},
id: "faq-4", title: "How do you ensure confidentiality?", content: "Client confidentiality is paramount. We utilize discrete marketing strategies and confidential transaction protocols to protect your privacy throughout the process."},
]}
containerClassName="py-16 md:py-24"
ctaTitleClassName="text-3xl md:text-4xl font-bold"

View File

@@ -10,36 +10,29 @@ import { Star, Award } from "lucide-react";
export default function PropertiesPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Properties", id: "properties" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "Properties", id: "/properties" },
{ name: "About", id: "/about" },
];
const footerColumns = [
{
title: "Navigation",
items: [
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Properties", href: "/properties" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
],
},
{
title: "Company",
items: [
{ label: "Our Team", href: "/team" },
title: "Company", items: [
{ label: "Our Team", href: "/about" },
{ label: "Our Story", href: "/about" },
{ label: "Careers", href: "#" },
{ label: "Press", href: "#" },
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Email", href: "mailto:hello@prestigeestates.com" },
{ label: "Schedule Call", href: "#" },
{ label: "Office Locations", href: "#" },
@@ -76,7 +69,7 @@ export default function PropertiesPage() {
tagIcon={Award}
tagAnimation="slide-up"
title="Exceptional Luxury Properties Worldwide"
buttons={[{ text: "Schedule Viewing", href: "/contact" }]}
buttons={[{ text: "Schedule Viewing", href: "#contact" }]}
buttonAnimation="slide-up"
useInvertedBackground={false}
containerClassName="py-16 md:py-24"
@@ -96,38 +89,17 @@ export default function PropertiesPage() {
animationType="scale-rotate"
products={[
{
id: "prop-1",
name: "Modern Penthouse - Manhattan",
price: "$8.5M",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82&_wi=4",
imageAlt: "Luxury penthouse with panoramic city views and contemporary interior",
},
id: "prop-1", name: "Modern Penthouse - Manhattan", price: "$8.5M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82", imageAlt: "Luxury penthouse with panoramic city views and contemporary interior"},
{
id: "prop-2",
name: "Beachfront Villa - Miami",
price: "$12M",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=59ldfm&_wi=3",
imageAlt: "Exclusive beachfront property with ocean views and modern architecture",
},
id: "prop-2", name: "Beachfront Villa - Miami", price: "$12M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=59ldfm", imageAlt: "Exclusive beachfront property with ocean views and modern architecture"},
{
id: "prop-3",
name: "Private Estate - Beverly Hills",
price: "$15.2M",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xgdvt&_wi=3",
imageAlt: "Luxury estate mansion with manicured grounds and premium amenities",
},
id: "prop-3", name: "Private Estate - Beverly Hills", price: "$15.2M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xgdvt", imageAlt: "Luxury estate mansion with manicured grounds and premium amenities"},
{
id: "prop-4",
name: "Lakefront Manor - Lake Como",
price: "$9.8M",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82&_wi=5",
imageAlt: "Exclusive lakefront property with Italian architectural charm",
},
id: "prop-4", name: "Lakefront Manor - Lake Como", price: "$9.8M", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gbtj82", imageAlt: "Exclusive lakefront property with Italian architectural charm"},
]}
useInvertedBackground={false}
containerClassName="py-16 md:py-24"
titleClassName="text-4xl md:text-5xl font-bold"
cardClassName="hover:shadow-lg transition-shadow"
/>
</div>