Update src/app/about/page.tsx

This commit is contained in:
2026-03-21 02:32:31 +00:00
parent 5b6daedfd4
commit 0187add136

View File

@@ -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>