Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-08 13:24:45 +00:00

View File

@@ -7,7 +7,6 @@ import HeroLogo from "@/components/sections/hero/HeroLogo";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import BlogCardThree from "@/components/sections/blog/BlogCardThree";
import FeatureCardNineteen as FeatureCardNineteenProcess from "@/components/sections/feature/FeatureCardNineteen";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactCenter from "@/components/sections/contact/ContactCenter";
@@ -48,10 +47,10 @@ export default function HomePage() {
logoText="Ben Bryant Landscaping"
description="Professional landscaping services with integrated client portal for quote requests, project tracking, and seamless communication. Streamline your landscaping business while providing exceptional customer experience."
buttons={[
{ text: "Request a Quote", href: "/client-portal" },
{ text: "View Portfolio", href: "#portfolio" },
{ text: "Request a Quote", href: "client-portal" },
{ text: "View Portfolio", href: "portfolio" },
]}
imageSrc="http://img.b2bpic.net/free-photo/female-legs-woman-using-lawn-mower_651396-1545.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/female-legs-woman-using-lawn-mower_651396-1545.jpg"
imageAlt="Professional landscape design"
showDimOverlay={true}
buttonAnimation="slide-up"
@@ -68,39 +67,15 @@ export default function HomePage() {
features={[
{
id: 1,
tag: "Maintenance",
title: "Lawn Care & Maintenance",
subtitle: "Regular upkeep for a perfect lawn",
description:
"Professional lawn mowing, edging, mulching, and seasonal maintenance. Keep your grass healthy and vibrant year-round with our expert care services.",
imageSrc:
"http://img.b2bpic.net/free-photo/professional-maintenance-worker-uniform-cleaning-city-park-from-dry-fall-leaves-with-hand-blower_7502-10247.jpg?_wi=1",
imageAlt: "Professional lawn maintenance",
buttons: [],
tag: "Maintenance", title: "Lawn Care & Maintenance", subtitle: "Regular upkeep for a perfect lawn", description: "Professional lawn mowing, edging, mulching, and seasonal maintenance. Keep your grass healthy and vibrant year-round with our expert care services.", imageSrc: "http://img.b2bpic.net/free-photo/professional-maintenance-worker-uniform-cleaning-city-park-from-dry-fall-leaves-with-hand-blower_7502-10247.jpg", imageAlt: "Professional lawn maintenance", buttons: [],
},
{
id: 2,
tag: "Design",
title: "Landscape Design",
subtitle: "Custom designs tailored to your vision",
description:
"Complete landscape design consultation and planning. We create stunning outdoor spaces that enhance your property value and provide outdoor living enjoyment.",
imageSrc:
"http://img.b2bpic.net/free-vector/flat-gardening-landing-page-template_23-2149339057.jpg?_wi=1",
imageAlt: "Landscape design planning",
buttons: [],
tag: "Design", title: "Landscape Design", subtitle: "Custom designs tailored to your vision", description: "Complete landscape design consultation and planning. We create stunning outdoor spaces that enhance your property value and provide outdoor living enjoyment.", imageSrc: "http://img.b2bpic.net/free-vector/flat-gardening-landing-page-template_23-2149339057.jpg", imageAlt: "Landscape design planning", buttons: [],
},
{
id: 3,
tag: "Construction",
title: "Hardscape Installation",
subtitle: "Patios, walkways, and retaining walls",
description:
"Expert hardscape construction including patios, pathways, retaining walls, and decorative stone work. Durable solutions that add structure and beauty to your landscape.",
imageSrc:
"http://img.b2bpic.net/free-photo/photo-stone-texture-pattern_58702-16062.jpg?_wi=1",
imageAlt: "Hardscape installation",
buttons: [],
tag: "Construction", title: "Hardscape Installation", subtitle: "Patios, walkways, and retaining walls", description: "Expert hardscape construction including patios, pathways, retaining walls, and decorative stone work. Durable solutions that add structure and beauty to your landscape.", imageSrc: "http://img.b2bpic.net/free-photo/photo-stone-texture-pattern_58702-16062.jpg", imageAlt: "Hardscape installation", buttons: [],
},
]}
buttonAnimation="slide-up"
@@ -117,58 +92,31 @@ export default function HomePage() {
animationType="slide-up"
plans={[
{
id: "1",
badge: "Lawn Care",
badgeIcon: Leaf,
price: "$89-150/mo",
subtitle: "Perfect for ongoing maintenance",
buttons: [
{ text: "Get Started", href: "/client-portal" },
{ text: "Learn More", href: "#how-it-works" },
id: "1", badge: "Lawn Care", badgeIcon: Leaf,
price: "$89-150/mo", subtitle: "Perfect for ongoing maintenance", buttons: [
{ text: "Get Started", href: "client-portal" },
{ text: "Learn More", href: "how-it-works" },
],
features: [
"Weekly or bi-weekly mowing",
"Edging and trimming",
"Seasonal mulching",
"Debris removal",
"12-month commitment",
],
"Weekly or bi-weekly mowing", "Edging and trimming", "Seasonal mulching", "Debris removal", "12-month commitment"],
},
{
id: "2",
badge: "Design Project",
badgeIcon: Pencil,
price: "$2,500-8,000",
subtitle: "Complete landscape redesign",
buttons: [
{ text: "Request Quote", href: "/client-portal" },
{ text: "View Portfolio", href: "#portfolio" },
id: "2", badge: "Design Project", badgeIcon: Pencil,
price: "$2,500-8,000", subtitle: "Complete landscape redesign", buttons: [
{ text: "Request Quote", href: "client-portal" },
{ text: "View Portfolio", href: "portfolio" },
],
features: [
"Full landscape consultation",
"Custom design plans",
"Plant and hardscape recommendations",
"3D visualization",
"Project timeline included",
],
"Full landscape consultation", "Custom design plans", "Plant and hardscape recommendations", "3D visualization", "Project timeline included"],
},
{
id: "3",
badge: "Full Service",
badgeIcon: Star,
price: "Custom Quote",
subtitle: "Design, installation, and maintenance",
buttons: [
{ text: "Contact Us", href: "#contact" },
{ text: "Schedule Consultation", href: "/client-portal" },
id: "3", badge: "Full Service", badgeIcon: Star,
price: "Custom Quote", subtitle: "Design, installation, and maintenance", buttons: [
{ text: "Contact Us", href: "contact" },
{ text: "Schedule Consultation", href: "client-portal" },
],
features: [
"Design and installation",
"Ongoing maintenance plan",
"Seasonal adjustments",
"Premium customer support",
"Flexible contract terms",
],
"Design and installation", "Ongoing maintenance plan", "Seasonal adjustments", "Premium customer support", "Flexible contract terms"],
},
]}
/>
@@ -184,53 +132,17 @@ export default function HomePage() {
animationType="slide-up"
blogs={[
{
id: "1",
category: "Residential Transformation",
title: "Modern Backyard Retreat",
excerpt:
"Complete backyard renovation with new patio, landscaping, and outdoor living space.",
imageSrc:
"http://img.b2bpic.net/free-photo/stair-pattern_1203-2595.jpg?_wi=1",
imageAlt: "Modern backyard project",
authorName: "Ben Bryant",
authorAvatar:
"http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg",
date: "Completed 2024",
},
id: "1", category: "Residential Transformation", title: "Modern Backyard Retreat", excerpt: "Complete backyard renovation with new patio, landscaping, and outdoor living space.", imageSrc: "http://img.b2bpic.net/free-photo/stair-pattern_1203-2595.jpg", imageAlt: "Modern backyard project", authorName: "Ben Bryant", authorAvatar: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg", date: "Completed 2024"},
{
id: "2",
category: "Hardscape Design",
title: "Elegant Stone Patio Installation",
excerpt:
"Custom flagstone patio with integrated planting beds and landscape lighting.",
imageSrc:
"http://img.b2bpic.net/free-photo/woman-lounge_23-2147681033.jpg?_wi=1",
imageAlt: "Stone patio project",
authorName: "Ben Bryant",
authorAvatar:
"http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg",
date: "Completed 2024",
},
id: "2", category: "Hardscape Design", title: "Elegant Stone Patio Installation", excerpt: "Custom flagstone patio with integrated planting beds and landscape lighting.", imageSrc: "http://img.b2bpic.net/free-photo/woman-lounge_23-2147681033.jpg", imageAlt: "Stone patio project", authorName: "Ben Bryant", authorAvatar: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg", date: "Completed 2024"},
{
id: "3",
category: "Garden Design",
title: "Sustainable Landscape Design",
excerpt:
"Eco-friendly landscaping with native plants, water features, and xeriscaping principles.",
imageSrc:
"http://img.b2bpic.net/free-photo/cactus-houseplant-collection-decoration-set_53876-31084.jpg",
imageAlt: "Sustainable garden project",
authorName: "Ben Bryant",
authorAvatar:
"http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg",
date: "Completed 2024",
},
id: "3", category: "Garden Design", title: "Sustainable Landscape Design", excerpt: "Eco-friendly landscaping with native plants, water features, and xeriscaping principles.", imageSrc: "http://img.b2bpic.net/free-photo/cactus-houseplant-collection-decoration-set_53876-31084.jpg", imageAlt: "Sustainable garden project", authorName: "Ben Bryant", authorAvatar: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg", date: "Completed 2024"},
]}
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<FeatureCardNineteenProcess
<FeatureCardNineteen
title="Our Process"
description="Simple steps to get your landscaping project started and tracked through completion."
tag="How It Works"
@@ -239,51 +151,19 @@ export default function HomePage() {
features={[
{
id: 1,
tag: "Step One",
title: "Request a Quote",
subtitle: "Share your project details",
description:
"Create an account and submit a quote request. Upload photos of your yard or project area to help us understand your vision and provide accurate pricing.",
imageSrc:
"http://img.b2bpic.net/free-photo/female-legs-woman-using-lawn-mower_651396-1545.jpg?_wi=2",
imageAlt: "Quote request process",
buttons: [],
tag: "Step One", title: "Request a Quote", subtitle: "Share your project details", description: "Create an account and submit a quote request. Upload photos of your yard or project area to help us understand your vision and provide accurate pricing.", imageSrc: "http://img.b2bpic.net/free-photo/female-legs-woman-using-lawn-mower_651396-1545.jpg", imageAlt: "Quote request process", buttons: [],
},
{
id: 2,
tag: "Step Two",
title: "Consultation & Review",
subtitle: "Direct communication with Ben",
description:
"Receive your custom quote through the portal. Use our built-in messaging system to discuss details, ask questions, and refine your project scope.",
imageSrc:
"http://img.b2bpic.net/free-vector/flat-gardening-landing-page-template_23-2149339057.jpg?_wi=2",
imageAlt: "Consultation process",
buttons: [],
tag: "Step Two", title: "Consultation & Review", subtitle: "Direct communication with Ben", description: "Receive your custom quote through the portal. Use our built-in messaging system to discuss details, ask questions, and refine your project scope.", imageSrc: "http://img.b2bpic.net/free-vector/flat-gardening-landing-page-template_23-2149339057.jpg", imageAlt: "Consultation process", buttons: [],
},
{
id: 3,
tag: "Step Three",
title: "Project Scheduling",
subtitle: "Schedule your service date",
description:
"Once you accept the quote, schedule your service appointment directly through the portal. Track project status in real-time with status updates.",
imageSrc:
"http://img.b2bpic.net/free-photo/professional-maintenance-worker-uniform-cleaning-city-park-from-dry-fall-leaves-with-hand-blower_7502-10247.jpg?_wi=2",
imageAlt: "Scheduling process",
buttons: [],
tag: "Step Three", title: "Project Scheduling", subtitle: "Schedule your service date", description: "Once you accept the quote, schedule your service appointment directly through the portal. Track project status in real-time with status updates.", imageSrc: "http://img.b2bpic.net/free-photo/professional-maintenance-worker-uniform-cleaning-city-park-from-dry-fall-leaves-with-hand-blower_7502-10247.jpg", imageAlt: "Scheduling process", buttons: [],
},
{
id: 4,
tag: "Step Four",
title: "Completion & Support",
subtitle: "Professional execution",
description:
"Our team completes your project on schedule. Receive notifications and enjoy ongoing support through our customer portal for any maintenance or follow-up needs.",
imageSrc:
"http://img.b2bpic.net/free-photo/stair-pattern_1203-2595.jpg?_wi=2",
imageAlt: "Completion process",
buttons: [],
tag: "Step Four", title: "Completion & Support", subtitle: "Professional execution", description: "Our team completes your project on schedule. Receive notifications and enjoy ongoing support through our customer portal for any maintenance or follow-up needs.", imageSrc: "http://img.b2bpic.net/free-photo/stair-pattern_1203-2595.jpg", imageAlt: "Completion process", buttons: [],
},
]}
buttonAnimation="slide-up"
@@ -301,71 +181,23 @@ export default function HomePage() {
showRating={true}
testimonials={[
{
id: "1",
name: "Sarah Johnson",
handle: "@sarahj_home",
testimonial:
"Ben transformed our backyard into a stunning outdoor oasis. His attention to detail and professionalism made the entire process seamless. Highly recommended!",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg?_wi=1",
imageAlt: "Sarah Johnson",
},
id: "1", name: "Sarah Johnson", handle: "@sarahj_home", testimonial: "Ben transformed our backyard into a stunning outdoor oasis. His attention to detail and professionalism made the entire process seamless. Highly recommended!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg", imageAlt: "Sarah Johnson"},
{
id: "2",
name: "Michael Chen",
handle: "@mchen_landscaping",
testimonial:
"The client portal made it so easy to track my project. Communication was excellent, and the final result exceeded my expectations. Great service!",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/happy-businessman-with-smartphone-smiling-camera_23-2148112961.jpg?_wi=1",
imageAlt: "Michael Chen",
},
id: "2", name: "Michael Chen", handle: "@mchen_landscaping", testimonial: "The client portal made it so easy to track my project. Communication was excellent, and the final result exceeded my expectations. Great service!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-with-smartphone-smiling-camera_23-2148112961.jpg", imageAlt: "Michael Chen"},
{
id: "3",
name: "Emily Rodriguez",
handle: "@emily_designs",
testimonial:
"Professional, reliable, and talented. Ben completed our landscape design project on time and within budget. Our family loves our new outdoor space!",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-business-woman-suit_23-2148603018.jpg?_wi=1",
imageAlt: "Emily Rodriguez",
},
id: "3", name: "Emily Rodriguez", handle: "@emily_designs", testimonial: "Professional, reliable, and talented. Ben completed our landscape design project on time and within budget. Our family loves our new outdoor space!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-woman-suit_23-2148603018.jpg", imageAlt: "Emily Rodriguez"},
{
id: "4",
name: "David Kim",
handle: "@d_kim_home",
testimonial:
"Best landscaping company in the area. Maintenance service is consistent, and the team is always professional. Couldn't be happier!",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-smiley-man-talking-phone_23-2148230757.jpg",
imageAlt: "David Kim",
},
id: "4", name: "David Kim", handle: "@d_kim_home", testimonial: "Best landscaping company in the area. Maintenance service is consistent, and the team is always professional. Couldn't be happier!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-man-talking-phone_23-2148230757.jpg", imageAlt: "David Kim"},
{
id: "5",
name: "Jessica Martinez",
handle: "@jmartinez_garden",
testimonial:
"From initial consultation to project completion, Ben Bryant Landscaping delivered excellence. The portal updates kept me informed every step of the way.",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg?_wi=2",
imageAlt: "Jessica Martinez",
},
id: "5", name: "Jessica Martinez", handle: "@jmartinez_garden", testimonial: "From initial consultation to project completion, Ben Bryant Landscaping delivered excellence. The portal updates kept me informed every step of the way.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099206.jpg", imageAlt: "Jessica Martinez"},
{
id: "6",
name: "Robert Thompson",
handle: "@rthompson_home",
testimonial:
"Exceptional work and outstanding customer service. Ben listens to your vision and delivers results that exceed expectations. Highly professional team!",
rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/happy-businessman-with-smartphone-smiling-camera_23-2148112961.jpg?_wi=2",
imageAlt: "Robert Thompson",
},
id: "6", name: "Robert Thompson", handle: "@rthompson_home", testimonial: "Exceptional work and outstanding customer service. Ben listens to your vision and delivers results that exceed expectations. Highly professional team!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-businessman-with-smartphone-smiling-camera_23-2148112961.jpg", imageAlt: "Robert Thompson"},
]}
/>
</div>
@@ -380,53 +212,21 @@ export default function HomePage() {
faqsAnimation="slide-up"
faqs={[
{
id: "1",
title: "How do I request a quote?",
content:
"Simply create an account in our client portal and submit a quote request. Upload photos of your project area, describe your vision, and submit. Ben will review your request and provide a custom quote within 2-3 business days.",
},
id: "1", title: "How do I request a quote?", content: "Simply create an account in our client portal and submit a quote request. Upload photos of your project area, describe your vision, and submit. Ben will review your request and provide a custom quote within 2-3 business days."},
{
id: "2",
title: "Can I track my project status online?",
content:
"Yes! The client portal provides real-time project status tracking. You'll receive notifications as your project moves from pending to accepted, scheduled, and completed stages.",
},
id: "2", title: "Can I track my project status online?", content: "Yes! The client portal provides real-time project status tracking. You'll receive notifications as your project moves from pending to accepted, scheduled, and completed stages."},
{
id: "3",
title: "What communication methods are available?",
content:
"Use our built-in messaging system to communicate directly with Ben. You'll also receive email notifications for important project updates and status changes.",
},
id: "3", title: "What communication methods are available?", content: "Use our built-in messaging system to communicate directly with Ben. You'll also receive email notifications for important project updates and status changes."},
{
id: "4",
title: "Are your prices competitive?",
content:
"We offer transparent, competitive pricing for all landscaping services. Our pricing varies based on project scope and complexity. Request a quote to receive a custom estimate.",
},
id: "4", title: "Are your prices competitive?", content: "We offer transparent, competitive pricing for all landscaping services. Our pricing varies based on project scope and complexity. Request a quote to receive a custom estimate."},
{
id: "5",
title: "How long do projects typically take?",
content:
"Timeline varies by project. Maintenance services are recurring monthly or bi-weekly. Design projects typically take 2-4 weeks from consultation to completion. Installation projects depend on scope and complexity.",
},
id: "5", title: "How long do projects typically take?", content: "Timeline varies by project. Maintenance services are recurring monthly or bi-weekly. Design projects typically take 2-4 weeks from consultation to completion. Installation projects depend on scope and complexity."},
{
id: "6",
title: "Do you offer seasonal services?",
content:
"Yes, we offer comprehensive seasonal landscaping services including spring cleanup, summer maintenance, fall preparation, and winter care. Ask about our seasonal service packages.",
},
id: "6", title: "Do you offer seasonal services?", content: "Yes, we offer comprehensive seasonal landscaping services including spring cleanup, summer maintenance, fall preparation, and winter care. Ask about our seasonal service packages."},
{
id: "7",
title: "Is the portal secure?",
content:
"Absolutely. Your portal login is secure and encrypted. All communication and project information is protected with industry-standard security measures.",
},
id: "7", title: "Is the portal secure?", content: "Absolutely. Your portal login is secure and encrypted. All communication and project information is protected with industry-standard security measures."},
{
id: "8",
title: "Can I reschedule my appointment?",
content:
"Yes! Use the portal to reschedule appointments up to 48 hours before your scheduled service. Contact us directly for emergency rescheduling needs.",
},
id: "8", title: "Can I reschedule my appointment?", content: "Yes! Use the portal to reschedule appointments up to 48 hours before your scheduled service. Contact us directly for emergency rescheduling needs."},
]}
/>
</div>