Update src/app/page.tsx
This commit is contained in:
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>
|
||||
|
||||
Reference in New Issue
Block a user