Merge version_1 into main #4
@@ -2,20 +2,16 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||
import { Facebook, Linkedin, Instagram } from "lucide-react";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import Link from "next/link";
|
||||
import { Star, Home, Users, TrendingUp, Award, Briefcase } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -40,115 +36,20 @@ export default function AboutPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-hero" data-section="about-hero">
|
||||
<HeroSplit
|
||||
title="About Ed Chapman"
|
||||
description="With over a decade of dedicated service in luxury real estate, Ed Chapman has established himself as a trusted advisor and market leader in Winchester, VA. His commitment to excellence, strategic market knowledge, and personalized client service have earned him recognition as a 5-star rated agent."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Luxury Specialist"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-portrait-beautiful-woman_23-2148317338.jpg"
|
||||
imageAlt="Ed Chapman professional portrait"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
fixedMediaHeight={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-expertise" data-section="about-expertise">
|
||||
<AboutMetric
|
||||
title="Professional Track Record"
|
||||
metrics={[
|
||||
{
|
||||
icon: Home,
|
||||
label: "Properties Successfully Sold",
|
||||
value: "150+",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Satisfied Clients Served",
|
||||
value: "200+",
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
label: "Years of Real Estate Excellence",
|
||||
value: "10+",
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Client Rating",
|
||||
value: "5-Star",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-approach" data-section="about-approach">
|
||||
<FeatureCardMedia
|
||||
title="Ed Chapman's Approach to Real Estate"
|
||||
description="Every client relationship is built on trust, expertise, and a deep commitment to achieving exceptional results. Ed combines strategic market knowledge with personalized service to guide clients through every step of their real estate journey."
|
||||
tag="Expert Guidance"
|
||||
tagIcon={Briefcase}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "approach-1",
|
||||
title: "Market Intelligence",
|
||||
description: "Deep understanding of Winchester luxury market trends, property values, and buyer preferences to position your property competitively.",
|
||||
tag: "Analysis",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg?_wi=3",
|
||||
imageAlt: "Market analysis",
|
||||
},
|
||||
{
|
||||
id: "approach-2",
|
||||
title: "Personalized Service",
|
||||
description: "Tailored strategies and white-glove service designed specifically for your unique real estate goals and circumstances.",
|
||||
tag: "Service",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg?_wi=3",
|
||||
imageAlt: "Client service",
|
||||
},
|
||||
{
|
||||
id: "approach-3",
|
||||
title: "Results-Driven Solutions",
|
||||
description: "Proven negotiation skills and strategic marketing to maximize value and ensure successful transaction outcomes.",
|
||||
tag: "Results",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg?_wi=3",
|
||||
imageAlt: "Successful results",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Ed Chapman - ERA Oakcrest Realty, Inc."
|
||||
copyrightText="© 2024 Ed Chapman | ERA Oakcrest Realty, Inc. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: require("lucide-react").Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com", ariaLabel: "Facebook"},
|
||||
{
|
||||
icon: require("lucide-react").Linkedin,
|
||||
href: "https://linkedin.com",
|
||||
ariaLabel: "LinkedIn",
|
||||
},
|
||||
icon: Linkedin,
|
||||
href: "https://linkedin.com", ariaLabel: "LinkedIn"},
|
||||
{
|
||||
icon: require("lucide-react").Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com", ariaLabel: "Instagram"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,21 +1,17 @@
|
||||
"use client";
|
||||
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Link from "next/link";
|
||||
import { Facebook, Linkedin, Instagram, Home, Users, TrendingUp, Award } from "lucide-react";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import { Facebook, Linkedin, Instagram } from "lucide-react";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -40,86 +36,6 @@ export default function ContactPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to find your luxury property or discuss your real estate goals? Contact Ed Chapman today for a personalized consultation. Whether you're buying, selling, or investing, expertise and results await."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call (540) 974-1211",
|
||||
href: "tel:5409741211"
|
||||
},
|
||||
{
|
||||
text: "Schedule Appointment",
|
||||
href: "#"
|
||||
}
|
||||
]}
|
||||
background={{
|
||||
variant: "radial-gradient"
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="Your Trusted Real Estate Partner"
|
||||
metrics={[
|
||||
{
|
||||
icon: Home,
|
||||
label: "Properties Sold",
|
||||
value: "150+"
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Satisfied Clients",
|
||||
value: "200+"
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
label: "Years Experience",
|
||||
value: "10+"
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Industry Recognition",
|
||||
value: "5-Star Rated"
|
||||
}
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="Ed made our real estate transaction seamless and stress-free. His expertise and professionalism were instrumental in finding our perfect home. We couldn't recommend him more highly."
|
||||
rating={5}
|
||||
author="Sarah & Michael Johnson"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-man-suit-looking-camera_23-2148112202.jpg",
|
||||
alt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-successful-red-haired-businesswoman-wearing-formal-suit-standing-with-arms-folded-smiling_74855-10034.jpg",
|
||||
alt: "Michael Johnson"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg",
|
||||
alt: "Client testimonial"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-young-businessman-office-clothing_23-2148763859.jpg",
|
||||
alt: "Client recommendation"
|
||||
}
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Ed Chapman - ERA Oakcrest Realty, Inc."
|
||||
@@ -127,19 +43,13 @@ export default function ContactPage() {
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Facebook"
|
||||
},
|
||||
href: "https://facebook.com", ariaLabel: "Facebook"},
|
||||
{
|
||||
icon: Linkedin,
|
||||
href: "https://linkedin.com",
|
||||
ariaLabel: "LinkedIn"
|
||||
},
|
||||
href: "https://linkedin.com", ariaLabel: "LinkedIn"},
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Instagram"
|
||||
}
|
||||
href: "https://instagram.com", ariaLabel: "Instagram"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
113
src/app/page.tsx
113
src/app/page.tsx
@@ -10,8 +10,7 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import Link from "next/link";
|
||||
import { Star, Home, Users, TrendingUp, Award, Briefcase } from "lucide-react";
|
||||
import { Star, Home, Users, TrendingUp, Award, Briefcase, Facebook, Linkedin, Instagram } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
@@ -71,24 +70,16 @@ export default function HomePage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: Home,
|
||||
label: "Properties Sold",
|
||||
value: "150+",
|
||||
},
|
||||
label: "Properties Sold", value: "150+"},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Satisfied Clients",
|
||||
value: "200+",
|
||||
},
|
||||
label: "Satisfied Clients", value: "200+"},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
label: "Years Experience",
|
||||
value: "10+",
|
||||
},
|
||||
label: "Years Experience", value: "10+"},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Industry Recognition",
|
||||
value: "5-Star Rated",
|
||||
},
|
||||
label: "Industry Recognition", value: "5-Star Rated"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -108,26 +99,11 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "prop-1",
|
||||
name: "Modern Estate - North Kent",
|
||||
price: "$850,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg",
|
||||
imageAlt: "Modern luxury bedroom",
|
||||
},
|
||||
id: "prop-1", name: "Modern Estate - North Kent", price: "$850,000", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg", imageAlt: "Modern luxury bedroom"},
|
||||
{
|
||||
id: "prop-2",
|
||||
name: "Contemporary Masterpiece",
|
||||
price: "$650,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg",
|
||||
imageAlt: "Luxury kitchen",
|
||||
},
|
||||
id: "prop-2", name: "Contemporary Masterpiece", price: "$650,000", imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg", imageAlt: "Luxury kitchen"},
|
||||
{
|
||||
id: "prop-3",
|
||||
name: "Elegant Residence - Winchester",
|
||||
price: "$725,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg",
|
||||
imageAlt: "Luxury living room",
|
||||
},
|
||||
id: "prop-3", name: "Elegant Residence - Winchester", price: "$725,000", imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg", imageAlt: "Luxury living room"},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
@@ -145,29 +121,11 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "service-1",
|
||||
title: "Property Valuation",
|
||||
description: "Accurate market analysis and property assessments to ensure competitive pricing and optimal returns.",
|
||||
tag: "Valuation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg",
|
||||
imageAlt: "Property valuation",
|
||||
},
|
||||
id: "service-1", title: "Property Valuation", description: "Accurate market analysis and property assessments to ensure competitive pricing and optimal returns.", tag: "Valuation", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg", imageAlt: "Property valuation"},
|
||||
{
|
||||
id: "service-2",
|
||||
title: "Marketing Strategy",
|
||||
description: "Strategic positioning and targeted marketing to showcase your property to qualified buyers.",
|
||||
tag: "Marketing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg",
|
||||
imageAlt: "Marketing strategy",
|
||||
},
|
||||
id: "service-2", title: "Marketing Strategy", description: "Strategic positioning and targeted marketing to showcase your property to qualified buyers.", tag: "Marketing", imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg", imageAlt: "Marketing strategy"},
|
||||
{
|
||||
id: "service-3",
|
||||
title: "Negotiation Expertise",
|
||||
description: "Professional negotiation to secure the best possible terms and price for your transaction.",
|
||||
tag: "Negotiation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg",
|
||||
imageAlt: "Negotiation",
|
||||
},
|
||||
id: "service-3", title: "Negotiation Expertise", description: "Professional negotiation to secure the best possible terms and price for your transaction.", tag: "Negotiation", imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg", imageAlt: "Negotiation"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -181,20 +139,11 @@ export default function HomePage() {
|
||||
description="Proven track record of success in the Winchester luxury real estate market with exceptional results."
|
||||
metrics={[
|
||||
{
|
||||
id: "metric-1",
|
||||
value: "$127M+",
|
||||
description: "Total Sales Volume",
|
||||
},
|
||||
id: "metric-1", value: "$127M+", description: "Total Sales Volume"},
|
||||
{
|
||||
id: "metric-2",
|
||||
value: "98%",
|
||||
description: "Client Satisfaction Rate",
|
||||
},
|
||||
id: "metric-2", value: "98%", description: "Client Satisfaction Rate"},
|
||||
{
|
||||
id: "metric-3",
|
||||
value: "45 Days",
|
||||
description: "Average Days on Market",
|
||||
},
|
||||
id: "metric-3", value: "45 Days", description: "Average Days on Market"},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
@@ -210,21 +159,13 @@ export default function HomePage() {
|
||||
author="Sarah & Michael Johnson"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-man-suit-looking-camera_23-2148112202.jpg",
|
||||
alt: "Sarah Johnson",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-man-suit-looking-camera_23-2148112202.jpg", alt: "Sarah Johnson"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-successful-red-haired-businesswoman-wearing-formal-suit-standing-with-arms-folded-smiling_74855-10034.jpg",
|
||||
alt: "Michael Johnson",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-successful-red-haired-businesswoman-wearing-formal-suit-standing-with-arms-folded-smiling_74855-10034.jpg", alt: "Michael Johnson"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg",
|
||||
alt: "Client testimonial",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg", alt: "Client testimonial"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-young-businessman-office-clothing_23-2148763859.jpg",
|
||||
alt: "Client recommendation",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-young-businessman-office-clothing_23-2148763859.jpg", alt: "Client recommendation"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -251,20 +192,14 @@ export default function HomePage() {
|
||||
copyrightText="© 2024 Ed Chapman | ERA Oakcrest Realty, Inc. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: require("lucide-react").Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com", ariaLabel: "Facebook"},
|
||||
{
|
||||
icon: require("lucide-react").Linkedin,
|
||||
href: "https://linkedin.com",
|
||||
ariaLabel: "LinkedIn",
|
||||
},
|
||||
icon: Linkedin,
|
||||
href: "https://linkedin.com", ariaLabel: "LinkedIn"},
|
||||
{
|
||||
icon: require("lucide-react").Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com", ariaLabel: "Instagram"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,21 +1,17 @@
|
||||
"use client";
|
||||
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Link from "next/link";
|
||||
import { Facebook, Linkedin, Instagram, Home, Briefcase } from "lucide-react";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import { Facebook, Linkedin, Instagram } from "lucide-react";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
|
||||
export default function PropertiesPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -40,117 +36,6 @@ export default function PropertiesPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="properties" data-section="properties">
|
||||
<ProductCardThree
|
||||
title="Featured Luxury Properties"
|
||||
description="Explore our exclusive selection of premium residential properties in the Winchester area. Each property represents the finest in luxury living and architectural excellence."
|
||||
tag="Available Now"
|
||||
tagIcon={Home}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "View All Properties",
|
||||
href: "/properties"
|
||||
}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "prop-1",
|
||||
name: "Modern Estate - North Kent",
|
||||
price: "$850,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg",
|
||||
imageAlt: "Modern luxury bedroom"
|
||||
},
|
||||
{
|
||||
id: "prop-2",
|
||||
name: "Contemporary Masterpiece",
|
||||
price: "$650,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg",
|
||||
imageAlt: "Luxury kitchen"
|
||||
},
|
||||
{
|
||||
id: "prop-3",
|
||||
name: "Elegant Residence - Winchester",
|
||||
price: "$725,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg",
|
||||
imageAlt: "Luxury living room"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardMedia
|
||||
title="Comprehensive Real Estate Services"
|
||||
description="From property evaluation to closing, Ed Chapman provides expert guidance at every step of your real estate journey."
|
||||
tag="Expert Services"
|
||||
tagIcon={Briefcase}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "service-1",
|
||||
title: "Property Valuation",
|
||||
description: "Accurate market analysis and property assessments to ensure competitive pricing and optimal returns.",
|
||||
tag: "Valuation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg",
|
||||
imageAlt: "Property valuation"
|
||||
},
|
||||
{
|
||||
id: "service-2",
|
||||
title: "Marketing Strategy",
|
||||
description: "Strategic positioning and targeted marketing to showcase your property to qualified buyers.",
|
||||
tag: "Marketing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg",
|
||||
imageAlt: "Marketing strategy"
|
||||
},
|
||||
{
|
||||
id: "service-3",
|
||||
title: "Negotiation Expertise",
|
||||
description: "Professional negotiation to secure the best possible terms and price for your transaction.",
|
||||
tag: "Negotiation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg",
|
||||
imageAlt: "Negotiation"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
title="Market Leadership"
|
||||
description="Proven track record of success in the Winchester luxury real estate market with exceptional results."
|
||||
metrics={[
|
||||
{
|
||||
id: "metric-1",
|
||||
value: "$127M+",
|
||||
description: "Total Sales Volume"
|
||||
},
|
||||
{
|
||||
id: "metric-2",
|
||||
value: "98%",
|
||||
description: "Client Satisfaction Rate"
|
||||
},
|
||||
{
|
||||
id: "metric-3",
|
||||
value: "45 Days",
|
||||
description: "Average Days on Market"
|
||||
}
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Ed Chapman - ERA Oakcrest Realty, Inc."
|
||||
@@ -158,19 +43,13 @@ export default function PropertiesPage() {
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Facebook"
|
||||
},
|
||||
href: "https://facebook.com", ariaLabel: "Facebook"},
|
||||
{
|
||||
icon: Linkedin,
|
||||
href: "https://linkedin.com",
|
||||
ariaLabel: "LinkedIn"
|
||||
},
|
||||
href: "https://linkedin.com", ariaLabel: "LinkedIn"},
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Instagram"
|
||||
}
|
||||
href: "https://instagram.com", ariaLabel: "Instagram"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user