From b6f5d39467feb26e176bda7608059ff5bf3b586c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:24:30 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 48 +++++++++++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 15 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0510c53..e90c451 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -20,7 +20,8 @@ export default function AboutPage() { const footerColumns = [ { - title: "Properties", items: [ + title: "Properties", + items: [ { label: "Featured Listings", href: "/" }, { label: "Search Properties", href: "/" }, { label: "New Arrivals", href: "#" }, @@ -28,7 +29,8 @@ export default function AboutPage() { ], }, { - title: "Company", items: [ + title: "Company", + items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "#team" }, { label: "Careers", href: "#" }, @@ -36,7 +38,8 @@ export default function AboutPage() { ], }, { - title: "Resources", items: [ + title: "Resources", + items: [ { label: "Market Insights", href: "#" }, { label: "Buyer's Guide", href: "#" }, { label: "Investment Guide", href: "#" }, @@ -44,7 +47,8 @@ export default function AboutPage() { ], }, { - title: "Legal", items: [ + title: "Legal", + items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -82,7 +86,7 @@ export default function AboutPage() { tagAnimation="slide-up" buttons={[{ text: "Meet Our Team", href: "#team" }]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/woman-sharing-smartphone-with-coworker_23-2147668788.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-sharing-smartphone-with-coworker_23-2147668788.jpg?_wi=2" imageAlt="Prestige Homes office interior" useInvertedBackground={true} /> @@ -95,20 +99,34 @@ export default function AboutPage() { tag="Expertise" tagIcon={Award} tagAnimation="slide-up" - gridVariant="three-columns-all-equal-width" features={[ { - id: "01", title: "Property Marketing", description: - "Strategic marketing campaigns that showcase your property to qualified high-net-worth buyers worldwide.", imageSrc: - "http://img.b2bpic.net/free-vector/gradient-real-estate-infographic-template_23-2149115435.jpg", imageAlt: "Property marketing strategy"}, + id: "01", + title: "Property Marketing", + description: + "Strategic marketing campaigns that showcase your property to qualified high-net-worth buyers worldwide.", + imageSrc: + "http://img.b2bpic.net/free-vector/gradient-real-estate-infographic-template_23-2149115435.jpg?_wi=2", + imageAlt: "Property marketing strategy", + }, { - id: "02", title: "Investment Advisory", description: - "Expert guidance on luxury real estate investments, market trends, and portfolio diversification strategies.", imageSrc: - "http://img.b2bpic.net/free-photo/reading-statistics_1098-13505.jpg", imageAlt: "Investment advisory consultation"}, + id: "02", + title: "Investment Advisory", + description: + "Expert guidance on luxury real estate investments, market trends, and portfolio diversification strategies.", + imageSrc: + "http://img.b2bpic.net/free-photo/reading-statistics_1098-13505.jpg?_wi=2", + imageAlt: "Investment advisory consultation", + }, { - id: "03", title: "Concierge Services", description: - "Personalized white-glove service handling every aspect of your luxury property purchase or sale.", imageSrc: - "http://img.b2bpic.net/free-photo/front-view-smiley-woman-holding-passport_23-2149963921.jpg", imageAlt: "Concierge service"}, + id: "03", + title: "Concierge Services", + description: + "Personalized white-glove service handling every aspect of your luxury property purchase or sale.", + imageSrc: + "http://img.b2bpic.net/free-photo/front-view-smiley-woman-holding-passport_23-2149963921.jpg?_wi=2", + imageAlt: "Concierge service", + }, ]} textboxLayout="default" animationType="slide-up" -- 2.49.1 From 2234f41cd6ad8bf58c04d9f426f8f5063c8a2d46 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:24:31 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 198 ++++++++++------------------------------------- 1 file changed, 39 insertions(+), 159 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0d5ab4b..f50a439 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,13 +11,14 @@ import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Sparkles, Home, Award, Users, Globe, TrendingUp, Star, Phone } from "lucide-react"; +import { Sparkles, Home, Award, Users, Globe, TrendingUp, Star, Phone, Video, Users2, Globe2, Zap } from "lucide-react"; import Link from "next/link"; export default function HomePage() { const navItems = [ { name: "Properties", id: "properties" }, { name: "About", id: "about" }, + { name: "Services", id: "services" }, { name: "Team", id: "team" }, { name: "Insights", id: "metrics" }, { name: "Contact", id: "contact" }, @@ -25,8 +26,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Properties", - items: [ + title: "Properties", items: [ { label: "Featured Listings", href: "/properties" }, { label: "Search Properties", href: "/properties" }, { label: "New Arrivals", href: "#" }, @@ -34,8 +34,7 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/" }, { label: "Our Team", href: "#team" }, { label: "Careers", href: "#" }, @@ -43,8 +42,7 @@ export default function HomePage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Market Insights", href: "#" }, { label: "Buyer's Guide", href: "#" }, { label: "Investment Guide", href: "#" }, @@ -52,8 +50,7 @@ export default function HomePage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -98,25 +95,15 @@ export default function HomePage() { buttonAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/weekend-mature-couple-enjoying-good-weather-near-swimming-pool_259150-57796.jpg", - imageAlt: "Modern luxury villa with panoramic views", - }, + imageSrc: "http://img.b2bpic.net/free-photo/weekend-mature-couple-enjoying-good-weather-near-swimming-pool_259150-57796.jpg", imageAlt: "Modern luxury villa with panoramic views"}, { - imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg", - imageAlt: "Contemporary penthouse with city skyline", - }, + imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg", imageAlt: "Contemporary penthouse with city skyline"}, { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-house-s-entrance_1156-87.jpg", - imageAlt: "Waterfront luxury estate with private beach", - }, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-house-s-entrance_1156-87.jpg", imageAlt: "Waterfront luxury estate with private beach"}, { - imageSrc: "http://img.b2bpic.net/free-photo/traditional-house-architecture_23-2151050993.jpg", - imageAlt: "Classical estate with manicured grounds", - }, + imageSrc: "http://img.b2bpic.net/free-photo/traditional-house-architecture_23-2151050993.jpg", imageAlt: "Classical estate with manicured grounds"}, { - imageSrc: "http://img.b2bpic.net/free-photo/modern-sauna-with-panoramic-windows-wooden-design_169016-70021.jpg", - imageAlt: "Resort-style villa with infinity pool", - }, + imageSrc: "http://img.b2bpic.net/free-photo/modern-sauna-with-panoramic-windows-wooden-design_169016-70021.jpg", imageAlt: "Resort-style villa with infinity pool"}, ]} mediaAnimation="slide-up" /> @@ -137,52 +124,34 @@ export default function HomePage() { gridVariant="three-columns-all-equal-width" products={[ { - id: "1", - name: "Sunset Ridge Estate", - price: "$8,500,000", - variant: "Los Angeles, California • 12,500 sq ft", - imageSrc: "http://img.b2bpic.net/free-photo/square-front-modern-office-buildings_1359-869.jpg?_wi=1", - imageAlt: "Sunset Ridge Estate", - }, + id: "1", name: "Sunset Ridge Estate", price: "$8,500,000", variant: "Los Angeles, California • 12,500 sq ft", imageSrc: "http://img.b2bpic.net/free-photo/square-front-modern-office-buildings_1359-869.jpg?_wi=1", imageAlt: "Sunset Ridge Estate"}, { - id: "2", - name: "Manhattan Penthouse", - price: "$12,750,000", - variant: "New York, New York • 7,200 sq ft", - imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=1", - imageAlt: "Manhattan Penthouse", - }, + id: "2", name: "Manhattan Penthouse", price: "$12,750,000", variant: "New York, New York • 7,200 sq ft", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=1", imageAlt: "Manhattan Penthouse"}, { - id: "3", - name: "Malibu Beach Villa", - price: "$15,200,000", - variant: "Malibu, California • 9,800 sq ft", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-calming-waves-ocean-with-scenery-sunset_181624-10580.jpg?_wi=1", - imageAlt: "Malibu Beach Villa", - }, + id: "3", name: "Malibu Beach Villa", price: "$15,200,000", variant: "Malibu, California • 9,800 sq ft", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-calming-waves-ocean-with-scenery-sunset_181624-10580.jpg?_wi=1", imageAlt: "Malibu Beach Villa"}, ]} />
-
+
@@ -289,71 +223,17 @@ export default function HomePage() { useInvertedBackground={true} testimonials={[ { - id: "1", - name: "Catherine Hartwell, Entrepreneur", - date: "Date: November 2024", - title: "An Exceptional Experience", - quote: "Prestige Homes understood our vision perfectly. The team's professionalism and attention to detail throughout the entire process was remarkable. We found our dream home in just three weeks.", - tag: "Property Purchase", - avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-smiling_23-2149375011.jpg", - imageSrc: "http://img.b2bpic.net/free-psd/real-estate-house-property-instagram-post-social-media-post-banner-template_84443-5185.jpg?_wi=1", - imageAlt: "Client success story", - }, + id: "1", name: "Catherine Hartwell, Entrepreneur", date: "Date: November 2024", title: "An Exceptional Experience", quote: "Prestige Homes understood our vision perfectly. The team's professionalism and attention to detail throughout the entire process was remarkable. We found our dream home in just three weeks.", tag: "Property Purchase", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-smiling_23-2149375011.jpg", imageSrc: "http://img.b2bpic.net/free-psd/real-estate-house-property-instagram-post-social-media-post-banner-template_84443-5185.jpg?_wi=1", imageAlt: "Client success story"}, { - id: "2", - name: "Marcus Richardson, Tech Executive", - date: "Date: October 2024", - title: "Outstanding Market Expertise", - quote: "Their investment advisory team provided invaluable insights that helped us make the right decision. The market analysis and strategic guidance were instrumental in our portfolio growth.", - tag: "Investment Advisory", - avatarSrc: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/desktop-pc-monitor-office-with-trading-indexes-showing-latest-prices_482257-83060.jpg?_wi=1", - imageAlt: "Investment success", - }, + id: "2", name: "Marcus Richardson, Tech Executive", date: "Date: October 2024", title: "Outstanding Market Expertise", quote: "Their investment advisory team provided invaluable insights that helped us make the right decision. The market analysis and strategic guidance were instrumental in our portfolio growth.", tag: "Investment Advisory", avatarSrc: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg", imageSrc: "http://img.b2bpic.net/free-photo/desktop-pc-monitor-office-with-trading-indexes-showing-latest-prices_482257-83060.jpg?_wi=1", imageAlt: "Investment success"}, { - id: "3", - name: "Sophia Valentino, International Investor", - date: "Date: September 2024", - title: "Global Reach, Personal Touch", - quote: "Finding the right property across multiple countries was seamless. Their international network and personalized service made the entire experience effortless and successful.", - tag: "International Sale", - avatarSrc: "http://img.b2bpic.net/free-photo/portrait-woman-dressed-80s-aesthetic_23-2150880751.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/paper-style-earth-globe-with-buildings_23-2149377674.jpg?_wi=1", - imageAlt: "International property deal", - }, + id: "3", name: "Sophia Valentino, International Investor", date: "Date: September 2024", title: "Global Reach, Personal Touch", quote: "Finding the right property across multiple countries was seamless. Their international network and personalized service made the entire experience effortless and successful.", tag: "International Sale", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-woman-dressed-80s-aesthetic_23-2150880751.jpg", imageSrc: "http://img.b2bpic.net/free-photo/paper-style-earth-globe-with-buildings_23-2149377674.jpg?_wi=1", imageAlt: "International property deal"}, { - id: "4", - name: "David Ashford, Property Developer", - date: "Date: August 2024", - title: "Trusted Partnership", - quote: "Working with Prestige Homes for our portfolio management has been transformative. Their strategic approach and market knowledge consistently deliver exceptional results for our investments.", - tag: "Portfolio Management", - avatarSrc: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150969887.jpg", - imageAlt: "Portfolio partnership", - }, + id: "4", name: "David Ashford, Property Developer", date: "Date: August 2024", title: "Trusted Partnership", quote: "Working with Prestige Homes for our portfolio management has been transformative. Their strategic approach and market knowledge consistently deliver exceptional results for our investments.", tag: "Portfolio Management", avatarSrc: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg", imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150969887.jpg", imageAlt: "Portfolio partnership"}, { - id: "5", - name: "Natasha Volkov, Executive Relocation", - date: "Date: July 2024", - title: "Seamless Transition", - quote: "The concierge services were extraordinary. From finding the perfect home to handling all logistics, everything was managed with precision and care. Highly recommended.", - tag: "Executive Relocation", - avatarSrc: "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213514.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/empty-glass-door_1339-3184.jpg", - imageAlt: "Relocation success", - }, + id: "5", name: "Natasha Volkov, Executive Relocation", date: "Date: July 2024", title: "Seamless Transition", quote: "The concierge services were extraordinary. From finding the perfect home to handling all logistics, everything was managed with precision and care. Highly recommended.", tag: "Executive Relocation", avatarSrc: "http://img.b2bpic.net/free-photo/business-woman-posing-street_23-2148213514.jpg", imageSrc: "http://img.b2bpic.net/free-photo/empty-glass-door_1339-3184.jpg", imageAlt: "Relocation success"}, { - id: "6", - name: "Richard Blackwood, Estate Owner", - date: "Date: June 2024", - title: "Premium Service Excellence", - quote: "Selling a multi-generational family estate required sensitivity and expertise. Prestige Homes handled it with grace and professionalism. The results exceeded our expectations completely.", - tag: "Estate Sale", - avatarSrc: "http://img.b2bpic.net/free-photo/young-male-holding-hands-pockets-white-shirt-jacket-looking-elegant-front-view_176474-99655.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-old-city-view_1417-1611.jpg", - imageAlt: "Estate sale success", - }, + id: "6", name: "Richard Blackwood, Estate Owner", date: "Date: June 2024", title: "Premium Service Excellence", quote: "Selling a multi-generational family estate required sensitivity and expertise. Prestige Homes handled it with grace and professionalism. The results exceeded our expectations completely.", tag: "Estate Sale", avatarSrc: "http://img.b2bpic.net/free-photo/young-male-holding-hands-pockets-white-shirt-jacket-looking-elegant-front-view_176474-99655.jpg", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-old-city-view_1417-1611.jpg", imageAlt: "Estate sale success"}, ]} />
-- 2.49.1