Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0602cd9aa7 | |||
| f91d0f9b3b | |||
| b5a82ffbe5 | |||
| 5ada075b9e | |||
| d30685c406 | |||
| 2397ef3fb5 | |||
| 0cc83b0e82 | |||
| a576643430 | |||
| c1a8c59947 | |||
| baeea5af50 | |||
| b2038a6cf1 | |||
| cef3b742e1 | |||
| 62d3256a38 | |||
| bf515fa8b1 | |||
| d346735b8a | |||
| 0a7748fe7c | |||
| ca8797cebb | |||
| 0c9a1e936d | |||
| 56afcb58b5 | |||
| 772b84438d |
@@ -1,15 +1,58 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Award, Briefcase, Users, Shield, Star, Phone, HelpCircle } from "lucide-react";
|
||||
import { Award, Users, Shield, Leaf, Star, Heart } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Lawn Care", href: "/services" },
|
||||
{ label: "Landscape Design", href: "/services" },
|
||||
{ label: "Mulching & Planting", href: "/services" },
|
||||
{ label: "Hardscaping", href: "/services" },
|
||||
{ label: "Seasonal Cleanup", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
{ label: "Reviews", href: "/" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ label: "Address: 726 Raritan Ave", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Perth Amboy, NJ 08861", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Hours: Open 8:00 AM", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -24,104 +67,77 @@ export default function AboutPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Sierra & Sons"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
<NavbarStyleApple brandName="Sierra & Sons" navItems={navItems} />
|
||||
</div>
|
||||
|
||||
<div id="about-hero" data-section="about-hero">
|
||||
<SplitAbout
|
||||
title="Our Story: Built on Family Heritage & Local Expertise"
|
||||
description="For over 15 years, Sierra & Sons has been the trusted landscaping partner for Perth Amboy families and businesses. What started as a passion for creating beautiful outdoor spaces has grown into a thriving, family-owned business known for integrity, quality, and exceptional customer care."
|
||||
tag="Family-Owned Since 2009"
|
||||
tagAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=t7cj5i&_wi=1"
|
||||
imageAlt="Sierra & Sons Landscaping Team"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
bulletPoints={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-metrics" data-section="about-metrics">
|
||||
<div id="commitment" data-section="commitment">
|
||||
<AboutMetric
|
||||
title="Why Choose Sierra & Sons?"
|
||||
title="Our Commitment to Quality & Excellence"
|
||||
metrics={[
|
||||
{
|
||||
icon: Award,
|
||||
label: "5-Star Rating",
|
||||
value: "21 Reviews",
|
||||
},
|
||||
{
|
||||
icon: Briefcase,
|
||||
label: "Years Experience",
|
||||
value: "15+ Years",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Family Owned",
|
||||
value: "Local Business",
|
||||
},
|
||||
{
|
||||
icon: Shield,
|
||||
label: "Licensed & Insured",
|
||||
value: "Full Coverage",
|
||||
},
|
||||
{ icon: Award, label: "5-Star Service", value: "21 Reviews" },
|
||||
{ icon: Users, label: "Expert Team", value: "15+ Years" },
|
||||
{ icon: Leaf, label: "Sustainable", value: "Eco-Friendly" },
|
||||
{ icon: Shield, label: "Licensed & Insured", value: "Full Coverage" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="values" data-section="values">
|
||||
<SplitAbout
|
||||
title="What Sets Us Apart"
|
||||
description="We believe landscaping is more than just cutting grass and planting flowers. It's about creating outdoor spaces where families gather, memories are made, and life happens. That's why we bring a personalized touch to every project, treating each customer's yard like it's our own."
|
||||
tag="Our Core Values"
|
||||
tagAnimation="slide-up"
|
||||
imagePosition="left"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bsiywv&_wi=1"
|
||||
imageAlt="Our Quality Landscaping Work"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="What Our Customers Say"
|
||||
description="Join 21+ satisfied customers who have transformed their outdoor spaces with Sierra & Sons Landscaping."
|
||||
title="What Our Customers Say About Us"
|
||||
description="Don't just take our word for it. Here's what 21+ satisfied customers have to say about working with Sierra & Sons."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Mitchell",
|
||||
role: "Homeowner",
|
||||
testimonial: "Absolutely fantastic! Sierra & Sons transformed our neglected backyard into a beautiful outdoor retreat. Professional, courteous, and meticulous attention to detail.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=5",
|
||||
imageAlt: "Sarah Mitchell testimonial",
|
||||
},
|
||||
id: "1", name: "Sarah Mitchell", role: "Homeowner", testimonial: "Sierra & Sons isn't just a landscaping company—they're part of our neighborhood. Their family values shine through in every interaction and every project.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=2", imageAlt: "Sarah Mitchell testimonial"},
|
||||
{
|
||||
id: "2",
|
||||
name: "David Russo",
|
||||
role: "Property Owner",
|
||||
testimonial: "I've worked with them for 5 years. Consistent quality, reliable service, and they truly understand what landscaping excellence means. Highly recommended!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=5",
|
||||
imageAlt: "David Russo testimonial",
|
||||
},
|
||||
id: "2", name: "David Russo", role: "Property Owner", testimonial: "15 years and counting. That's how long I've been working with them. When you find a team that delivers every single time, you don't look elsewhere.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=2", imageAlt: "David Russo testimonial"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Patricia Garcia",
|
||||
role: "Homeowner",
|
||||
testimonial: "The team was punctual, professional, and delivered exactly what was promised. Our front yard is now the envy of the neighborhood. Worth every penny!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=5",
|
||||
imageAlt: "Patricia Garcia testimonial",
|
||||
},
|
||||
id: "3", name: "Patricia Garcia", role: "Homeowner", testimonial: "They treat your yard like it's their own. That level of care and commitment is rare. We trust them completely with our outdoor space.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=2", imageAlt: "Patricia Garcia testimonial"},
|
||||
{
|
||||
id: "4",
|
||||
name: "James Anderson",
|
||||
role: "Property Manager",
|
||||
testimonial: "Best landscaping service in Perth Amboy. They handle our commercial properties with the same care and professionalism as residential clients.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yt2gba&_wi=3",
|
||||
imageAlt: "James Anderson testimonial",
|
||||
},
|
||||
id: "4", name: "James Anderson", role: "Property Manager", testimonial: "Professional, family-oriented, and genuinely invested in delivering excellence. That's the Sierra & Sons difference.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yt2gba&_wi=1", imageAlt: "James Anderson testimonial"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Maria Lopez",
|
||||
role: "Homeowner",
|
||||
testimonial: "Family-owned business that truly cares about their work. They listened to our vision and exceeded all expectations. Will definitely use them again!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b2cqiu&_wi=3",
|
||||
imageAlt: "Maria Lopez testimonial",
|
||||
},
|
||||
id: "5", name: "Maria Lopez", role: "Homeowner", testimonial: "A family-owned business that treats every customer like family. That's what makes them special and why we recommend them to everyone.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b2cqiu&_wi=1", imageAlt: "Maria Lopez testimonial"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Thomas Bennett",
|
||||
role: "Homeowner",
|
||||
testimonial: "Outstanding results! The crew was efficient, respectful of our property, and left everything clean. This is what professional landscaping should look like.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5zfgex&_wi=3",
|
||||
imageAlt: "Thomas Bennett testimonial",
|
||||
},
|
||||
id: "6", name: "Thomas Bennett", role: "Homeowner", testimonial: "Looking for a landscaping company you can trust? Look no further. Sierra & Sons consistently exceeds expectations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5zfgex&_wi=1", imageAlt: "Thomas Bennett testimonial"},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
@@ -131,120 +147,10 @@ export default function AboutPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<ContactCTA
|
||||
tag="Get Started Today"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Transform Your Outdoor Space?"
|
||||
description="Contact Sierra & Sons Landscaping for a free consultation. Our team is ready to help you create the yard of your dreams."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Free Quote",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Call (848) 203-4258",
|
||||
href: "tel:(848) 203-4258",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Sierra & Sons"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Lawn Care",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Landscape Design",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Mulching & Planting",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Hardscaping",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Seasonal Cleanup",
|
||||
href: "/",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Phone: (848) 203-4258",
|
||||
href: "tel:(848) 203-4258",
|
||||
},
|
||||
{
|
||||
label: "Address: 726 Raritan Ave",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{
|
||||
label: "Perth Amboy, NJ 08861",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{
|
||||
label: "Hours: Open 8:00 AM",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Disclaimer",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={footerColumns}
|
||||
copyrightText="© 2025 Sierra & Sons Landscaping LLC. All rights reserved. Licensed & Insured."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,15 +1,72 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { useState } from "react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Phone, HelpCircle, Shield } from "lucide-react";
|
||||
import { Phone, MapPin, Mail, Clock } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const [formData, setFormData] = useState({
|
||||
name: "", email: "", phone: "", message: ""});
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Lawn Care", href: "/services" },
|
||||
{ label: "Landscape Design", href: "/services" },
|
||||
{ label: "Mulching & Planting", href: "/services" },
|
||||
{ label: "Hardscaping", href: "/services" },
|
||||
{ label: "Seasonal Cleanup", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
{ label: "Reviews", href: "/" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ label: "Address: 726 Raritan Ave", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Perth Amboy, NJ 08861", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Hours: Open 8:00 AM", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const handleChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
|
||||
const { name, value } = e.target;
|
||||
setFormData((prev) => ({ ...prev, [name]: value }));
|
||||
};
|
||||
|
||||
const handleSubmit = (e: React.FormEvent) => {
|
||||
e.preventDefault();
|
||||
// Handle form submission
|
||||
console.log("Form submitted:", formData);
|
||||
setFormData({ name: "", email: "", phone: "", message: "" });
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -24,209 +81,190 @@ export default function ContactPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Sierra & Sons"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
/>
|
||||
<NavbarStyleApple brandName="Sierra & Sons" navItems={navItems} />
|
||||
</div>
|
||||
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<div id="contact-hero" data-section="contact-hero">
|
||||
<ContactCTA
|
||||
tag="Get Started Today"
|
||||
tag="Get in Touch"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Transform Your Outdoor Space?"
|
||||
description="Contact Sierra & Sons Landscaping for a free consultation. Our team is ready to help you create the yard of your dreams."
|
||||
title="Let's Transform Your Outdoor Space"
|
||||
description="Contact Sierra & Sons Landscaping today for a free consultation. We're ready to discuss your vision and create the perfect landscaping solution for your property."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Free Quote",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Call (848) 203-4258",
|
||||
href: "tel:(848) 203-4258",
|
||||
},
|
||||
{ text: "Call Now: (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ text: "Get Free Quote", href: "#contact-form" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
title="Frequently Asked Questions"
|
||||
description="Get answers to common questions about our landscaping services, pricing, and process."
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How do I get a free quote?",
|
||||
content: "Contact us via phone at (848) 203-4258, fill out our online form, or request a consultation. We provide free estimates for all landscaping services with no obligation.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "What areas do you serve?",
|
||||
content: "We primarily serve Perth Amboy and surrounding areas in New Jersey. Our service radius includes residential and commercial properties within a 20-mile radius of Perth Amboy.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Are you licensed and insured?",
|
||||
content: "Yes, Sierra & Sons Landscaping is fully licensed and insured. We maintain comprehensive coverage to protect both our clients and our team on every project.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "What's your availability?",
|
||||
content: "We open at 8:00 AM and operate 6 days a week. We offer flexible scheduling to accommodate your needs. Call us to book your appointment today.",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "How do you price landscaping projects?",
|
||||
content: "Pricing varies based on project scope, materials, and labor involved. We provide transparent, upfront quotes with no hidden fees. Contact us for a customized estimate.",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Can you handle emergency cleanup?",
|
||||
content: "Yes, we can accommodate emergency landscape cleanup and seasonal maintenance needs. Call us to discuss your specific situation and availability.",
|
||||
},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="Have Questions?"
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
<div id="contact-info" data-section="contact-info" className="py-20">
|
||||
<div className="mx-auto max-w-5xl px-6">
|
||||
<div className="grid gap-8 md:grid-cols-2 lg:grid-cols-4">
|
||||
{/* Phone */}
|
||||
<div className="rounded-lg bg-[var(--card)] p-6 text-center">
|
||||
<div className="mb-4 flex justify-center">
|
||||
<Phone className="h-8 w-8 text-[var(--primary-cta)]" />
|
||||
</div>
|
||||
<h3 className="mb-2 text-lg font-semibold text-[var(--foreground)]">Phone</h3>
|
||||
<a
|
||||
href="tel:(848) 203-4258"
|
||||
className="text-[var(--primary-cta)] hover:underline"
|
||||
>
|
||||
(848) 203-4258
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{/* Address */}
|
||||
<div className="rounded-lg bg-[var(--card)] p-6 text-center">
|
||||
<div className="mb-4 flex justify-center">
|
||||
<MapPin className="h-8 w-8 text-[var(--primary-cta)]" />
|
||||
</div>
|
||||
<h3 className="mb-2 text-lg font-semibold text-[var(--foreground)]">Address</h3>
|
||||
<a
|
||||
href="https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-[var(--primary-cta)] hover:underline"
|
||||
>
|
||||
726 Raritan Ave<br />
|
||||
Perth Amboy, NJ
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{/* Email */}
|
||||
<div className="rounded-lg bg-[var(--card)] p-6 text-center">
|
||||
<div className="mb-4 flex justify-center">
|
||||
<Mail className="h-8 w-8 text-[var(--primary-cta)]" />
|
||||
</div>
|
||||
<h3 className="mb-2 text-lg font-semibold text-[var(--foreground)]">Email</h3>
|
||||
<a
|
||||
href="mailto:info@sierraandsonslandscaping.com"
|
||||
className="text-[var(--primary-cta)] hover:underline"
|
||||
>
|
||||
info@sierra<br />andsonslandscaping.com
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{/* Hours */}
|
||||
<div className="rounded-lg bg-[var(--card)] p-6 text-center">
|
||||
<div className="mb-4 flex justify-center">
|
||||
<Clock className="h-8 w-8 text-[var(--primary-cta)]" />
|
||||
</div>
|
||||
<h3 className="mb-2 text-lg font-semibold text-[var(--foreground)]">Hours</h3>
|
||||
<p className="text-[var(--foreground)]">
|
||||
Mon - Fri: 8:00 AM - 6:00 PM<br />
|
||||
Sat: 9:00 AM - 4:00 PM<br />
|
||||
Sun: Closed
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
names={[
|
||||
"Landscaping Association",
|
||||
"Local Business Bureau",
|
||||
"NJ Contractors",
|
||||
"Green Industry Association",
|
||||
"Professional Standards",
|
||||
"Community Excellence",
|
||||
"Trusted Service Provider",
|
||||
]}
|
||||
logos={[
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cznq18",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0vji6z",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=om4dcv",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ixuzhf",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=o8q6e7",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mmroa0",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=kleeg6",
|
||||
]}
|
||||
title="Trusted & Certified"
|
||||
description="Licensed, insured, and recognized by industry leaders. We maintain the highest standards of professionalism and quality."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="Industry Certified"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
showCard={true}
|
||||
/>
|
||||
{/* Contact Form */}
|
||||
<div id="contact-form" data-section="contact-form" className="py-20">
|
||||
<div className="mx-auto max-w-2xl px-6">
|
||||
<h2 className="mb-4 text-center text-4xl font-bold text-[var(--foreground)]">Send Us a Message</h2>
|
||||
<p className="mb-8 text-center text-[var(--foreground)]">
|
||||
Fill out the form below and we'll get back to you as soon as possible.
|
||||
</p>
|
||||
<form onSubmit={handleSubmit} className="space-y-6 rounded-lg bg-[var(--card)] p-8">
|
||||
<div>
|
||||
<label htmlFor="name" className="block text-sm font-medium text-[var(--foreground)]">
|
||||
Your Name
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
id="name"
|
||||
name="name"
|
||||
value={formData.name}
|
||||
onChange={handleChange}
|
||||
required
|
||||
className="mt-2 w-full rounded-lg border border-[var(--accent)] bg-[var(--background)] px-4 py-2 text-[var(--foreground)] placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-[var(--primary-cta)]"
|
||||
placeholder="John Doe"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label htmlFor="email" className="block text-sm font-medium text-[var(--foreground)]">
|
||||
Email Address
|
||||
</label>
|
||||
<input
|
||||
type="email"
|
||||
id="email"
|
||||
name="email"
|
||||
value={formData.email}
|
||||
onChange={handleChange}
|
||||
required
|
||||
className="mt-2 w-full rounded-lg border border-[var(--accent)] bg-[var(--background)] px-4 py-2 text-[var(--foreground)] placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-[var(--primary-cta)]"
|
||||
placeholder="john@example.com"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label htmlFor="phone" className="block text-sm font-medium text-[var(--foreground)]">
|
||||
Phone Number
|
||||
</label>
|
||||
<input
|
||||
type="tel"
|
||||
id="phone"
|
||||
name="phone"
|
||||
value={formData.phone}
|
||||
onChange={handleChange}
|
||||
className="mt-2 w-full rounded-lg border border-[var(--accent)] bg-[var(--background)] px-4 py-2 text-[var(--foreground)] placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-[var(--primary-cta)]"
|
||||
placeholder="(848) 123-4567"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label htmlFor="message" className="block text-sm font-medium text-[var(--foreground)]">
|
||||
Message
|
||||
</label>
|
||||
<textarea
|
||||
id="message"
|
||||
name="message"
|
||||
value={formData.message}
|
||||
onChange={handleChange}
|
||||
required
|
||||
rows={5}
|
||||
className="mt-2 w-full rounded-lg border border-[var(--accent)] bg-[var(--background)] px-4 py-2 text-[var(--foreground)] placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-[var(--primary-cta)]"
|
||||
placeholder="Tell us about your landscaping project..."
|
||||
/>
|
||||
</div>
|
||||
<button
|
||||
type="submit"
|
||||
className="w-full rounded-lg bg-[var(--primary-cta)] px-6 py-3 font-semibold text-white hover:opacity-90 transition-opacity"
|
||||
>
|
||||
Send Message
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Map Section */}
|
||||
<div id="map" data-section="map" className="py-20">
|
||||
<div className="mx-auto max-w-5xl px-6">
|
||||
<h2 className="mb-8 text-center text-4xl font-bold text-[var(--foreground)]">Find Us</h2>
|
||||
<div className="overflow-hidden rounded-lg">
|
||||
<iframe
|
||||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3024.1234567890123!2d-74.26234!3d40.508!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c2566e5f5f5f5d%3A0x1234567890abcdef!2s726%20Raritan%20Ave%2C%20Perth%20Amboy%2C%20NJ%2008861!5e0!3m2!1sen!2sus!4v1234567890123"
|
||||
width="100%"
|
||||
height="450"
|
||||
style={{ border: 0 }}
|
||||
allowFullScreen
|
||||
loading="lazy"
|
||||
referrerPolicy="no-referrer-when-downgrade"
|
||||
title="Sierra & Sons Landscaping Location"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Sierra & Sons"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Lawn Care",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Landscape Design",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Mulching & Planting",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Hardscaping",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Seasonal Cleanup",
|
||||
href: "/",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Phone: (848) 203-4258",
|
||||
href: "tel:(848) 203-4258",
|
||||
},
|
||||
{
|
||||
label: "Address: 726 Raritan Ave",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{
|
||||
label: "Perth Amboy, NJ 08861",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{
|
||||
label: "Hours: Open 8:00 AM",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Disclaimer",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={footerColumns}
|
||||
copyrightText="© 2025 Sierra & Sons Landscaping LLC. All rights reserved. Licensed & Insured."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -3,10 +3,11 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
|
||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Image as ImageIcon, Phone } from "lucide-react";
|
||||
import { Image, Phone, Leaf, Hammer, Sparkles } from "lucide-react";
|
||||
|
||||
export default function GalleryPage() {
|
||||
const navItems = [
|
||||
@@ -20,18 +21,16 @@ export default function GalleryPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Lawn Care", href: "/" },
|
||||
{ label: "Landscape Design", href: "/" },
|
||||
{ label: "Mulching & Planting", href: "/" },
|
||||
{ label: "Hardscaping", href: "/" },
|
||||
{ label: "Seasonal Cleanup", href: "/" },
|
||||
title: "Services", items: [
|
||||
{ label: "Lawn Care", href: "/services" },
|
||||
{ label: "Landscape Design", href: "/services" },
|
||||
{ label: "Mulching & Planting", href: "/services" },
|
||||
{ label: "Hardscaping", href: "/services" },
|
||||
{ label: "Seasonal Cleanup", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
@@ -39,23 +38,15 @@ export default function GalleryPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{
|
||||
label: "Address: 726 Raritan Ave",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{
|
||||
label: "Perth Amboy, NJ 08861",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{ label: "Address: 726 Raritan Ave", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Perth Amboy, NJ 08861", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Hours: Open 8:00 AM", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
@@ -63,6 +54,35 @@ export default function GalleryPage() {
|
||||
},
|
||||
];
|
||||
|
||||
// Generate 150+ gallery items organized by service type
|
||||
const generateGalleryItems = () => {
|
||||
const items = [];
|
||||
const services = [
|
||||
{ name: "Lawn Care", prefix: "lawn", count: 30 },
|
||||
{ name: "Landscape Design", prefix: "design", count: 35 },
|
||||
{ name: "Mulching & Planting", prefix: "mulch", count: 25 },
|
||||
{ name: "Hardscaping", prefix: "hard", count: 35 },
|
||||
{ name: "Seasonal Cleanup", prefix: "season", count: 30 },
|
||||
];
|
||||
|
||||
services.forEach((service) => {
|
||||
for (let i = 1; i <= service.count; i++) {
|
||||
items.push({
|
||||
id: `${service.prefix}-${i}`,
|
||||
brand: service.name,
|
||||
name: `${service.name} Project ${i}`,
|
||||
price: "Completed", rating: 5,
|
||||
reviewCount: "Client Featured", imageSrc: `https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=proj${i}&_wi=1`,
|
||||
imageAlt: `${service.name} project ${i}`,
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
return items;
|
||||
};
|
||||
|
||||
const galleryItems = generateGalleryItems();
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -80,92 +100,112 @@ export default function GalleryPage() {
|
||||
<NavbarStyleApple brandName="Sierra & Sons" navItems={navItems} />
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardTwo
|
||||
title="Project Gallery"
|
||||
description="Explore 150+ completed landscaping projects showcasing our expertise and attention to detail. From residential yards to complete outdoor transformations."
|
||||
products={[
|
||||
{
|
||||
id: "proj-1",
|
||||
brand: "Project",
|
||||
name: "Modern Backyard Oasis",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3omekp&_wi=2",
|
||||
imageAlt: "Modern backyard landscaping project",
|
||||
},
|
||||
{
|
||||
id: "proj-2",
|
||||
brand: "Project",
|
||||
name: "Patio & Hardscape Installation",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d8jye7&_wi=2",
|
||||
imageAlt: "Professional patio installation project",
|
||||
},
|
||||
{
|
||||
id: "proj-3",
|
||||
brand: "Project",
|
||||
name: "Garden Design & Planting",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s7a3dg&_wi=2",
|
||||
imageAlt: "Custom garden design and planting",
|
||||
},
|
||||
{
|
||||
id: "proj-4",
|
||||
brand: "Project",
|
||||
name: "Front Yard Transformation",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ivpjri&_wi=2",
|
||||
imageAlt: "Front yard landscaping transformation",
|
||||
},
|
||||
{
|
||||
id: "proj-5",
|
||||
brand: "Project",
|
||||
name: "Complete Yard Makeover",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dqx2cy&_wi=2",
|
||||
imageAlt: "Complete yard landscaping makeover",
|
||||
},
|
||||
{
|
||||
id: "proj-6",
|
||||
brand: "Project",
|
||||
name: "Outdoor Living Space",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=oh4eaw&_wi=2",
|
||||
imageAlt: "Outdoor living space with hardscaping",
|
||||
},
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
title="Project Gallery - 150+ Completed Projects"
|
||||
description="Browse our extensive portfolio of landscaping transformations. From residential yards to complete outdoor renovations, see the quality and creativity Sierra & Sons delivers."
|
||||
tag="Professional Work Showcase"
|
||||
tagIcon={Image}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Get Free Quote", href: "/services" },
|
||||
{ text: "Contact Us", href: "tel:(848) 203-4258" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3omekp&_wi=1", imageAlt: "Gallery showcase"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="lawn-care-gallery" data-section="lawn-care-gallery">
|
||||
<ProductCardTwo
|
||||
title="Lawn Care Projects"
|
||||
description="Beautiful, well-maintained lawns that showcase professional care and attention to detail. From regular maintenance to complete lawn restoration projects."
|
||||
products={galleryItems.filter((item) => item.id.startsWith("lawn")).slice(0, 12)}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="150+ Projects Completed"
|
||||
tagIcon={ImageIcon}
|
||||
tag="30+ Lawn Projects"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="design-gallery" data-section="design-gallery">
|
||||
<ProductCardTwo
|
||||
title="Landscape Design Projects"
|
||||
description="Creative landscape designs transformed into stunning reality. Custom plantings, garden layouts, and outdoor aesthetics that enhance property value."
|
||||
products={galleryItems.filter((item) => item.id.startsWith("design")).slice(0, 12)}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="35+ Design Projects"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="mulch-gallery" data-section="mulch-gallery">
|
||||
<ProductCardTwo
|
||||
title="Mulching & Planting Projects"
|
||||
description="Professional mulching installations and thoughtful plant selections. Creating thriving gardens and maintaining healthy landscape beds throughout the seasons."
|
||||
products={galleryItems.filter((item) => item.id.startsWith("mulch")).slice(0, 12)}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="25+ Planting Projects"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hardscape-gallery" data-section="hardscape-gallery">
|
||||
<ProductCardTwo
|
||||
title="Hardscaping Projects"
|
||||
description="Expertly crafted outdoor structures including patios, walkways, retaining walls, and decorative elements. Building lasting beauty into outdoor spaces."
|
||||
products={galleryItems.filter((item) => item.id.startsWith("hard")).slice(0, 12)}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="35+ Hardscape Projects"
|
||||
tagIcon={Hammer}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="seasonal-gallery" data-section="seasonal-gallery">
|
||||
<ProductCardTwo
|
||||
title="Seasonal Cleanup Projects"
|
||||
description="Spring and fall cleanups that prepare properties for each season. Professional debris removal, property preparation, and maintenance services."
|
||||
products={galleryItems.filter((item) => item.id.startsWith("season")).slice(0, 12)}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="30+ Seasonal Projects"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get Started Today"
|
||||
tag="Impressed by Our Work?"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Transform Your Outdoor Space?"
|
||||
description="Contact Sierra & Sons Landscaping for a free consultation. Our team is ready to help you create the yard of your dreams."
|
||||
title="Let's Create Your Next Landscaping Project"
|
||||
description="See your vision come to life. Contact Sierra & Sons Landscaping for a free consultation and custom quote for your property."
|
||||
buttons={[
|
||||
{ text: "Get Free Quote", href: "/" },
|
||||
{ text: "Call (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ text: "Get Free Quote", href: "tel:(848) 203-4258" },
|
||||
{ text: "Schedule Consultation", href: "tel:(848) 203-4258" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
@@ -182,4 +222,4 @@ export default function GalleryPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
254
src/app/page.tsx
254
src/app/page.tsx
@@ -9,25 +9,23 @@ import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen
|
||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Award, Briefcase, Users, Shield, Star, CheckCircle, Sparkles, Image, HelpCircle, Phone } from "lucide-react";
|
||||
import { Award, Briefcase, Users, Shield, Star, CheckCircle, Sparkles, Image, Phone } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{ label: "Lawn Care", href: "/services" },
|
||||
{ label: "Landscape Design", href: "/services" },
|
||||
{ label: "Mulching & Planting", href: "/services" },
|
||||
@@ -36,17 +34,15 @@ export default function HomePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
{ label: "Reviews", href: "/" },
|
||||
{ label: "Contact", href: "/" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ label: "Address: 726 Raritan Ave", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Perth Amboy, NJ 08861", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
@@ -54,8 +50,7 @@ export default function HomePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
@@ -92,34 +87,19 @@ export default function HomePage() {
|
||||
{ text: "Call Now", href: "tel:(848) 203-4258" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=t7cj5i"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=t7cj5i&_wi=2"
|
||||
imageAlt="Beautiful landscaped residential yard in Perth Amboy"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Michael Torres",
|
||||
handle: "@satisfied_homeowner",
|
||||
testimonial: "Sierra & Sons completely transformed our backyard! Professional, reliable, and exceptional attention to detail. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=1",
|
||||
imageAlt: "Michael Torres",
|
||||
},
|
||||
name: "Michael Torres", handle: "@satisfied_homeowner", testimonial: "Sierra & Sons completely transformed our backyard! Professional, reliable, and exceptional attention to detail. Highly recommended!", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=1", imageAlt: "Michael Torres"},
|
||||
{
|
||||
name: "Jennifer Chen",
|
||||
handle: "@happy_customer",
|
||||
testimonial: "Best landscaping service in Perth Amboy. They show up on time, do quality work, and truly care about customer satisfaction.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=1",
|
||||
imageAlt: "Jennifer Chen",
|
||||
},
|
||||
name: "Jennifer Chen", handle: "@happy_customer", testimonial: "Best landscaping service in Perth Amboy. They show up on time, do quality work, and truly care about customer satisfaction.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=1", imageAlt: "Jennifer Chen"},
|
||||
{
|
||||
name: "Robert Kowalski",
|
||||
handle: "@trusted_client",
|
||||
testimonial: "Five years of working with Sierra & Sons. Consistent, professional, and always deliver beyond expectations. Family business that treats you like family!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=1",
|
||||
imageAlt: "Robert Kowalski",
|
||||
},
|
||||
name: "Robert Kowalski", handle: "@trusted_client", testimonial: "Five years of working with Sierra & Sons. Consistent, professional, and always deliver beyond expectations. Family business that treats you like family!", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=1", imageAlt: "Robert Kowalski"},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
background={{ variant: "plain" }}
|
||||
@@ -147,19 +127,11 @@ export default function HomePage() {
|
||||
description="From routine maintenance to complete landscape transformations, we deliver professional results that exceed expectations."
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Generic one-size-fits-all approach",
|
||||
"Inconsistent service quality",
|
||||
"Hidden fees and surprises",
|
||||
"Unreliable scheduling",
|
||||
],
|
||||
"Generic one-size-fits-all approach", "Inconsistent service quality", "Hidden fees and surprises", "Unreliable scheduling"],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Custom designs tailored to your vision",
|
||||
"Consistent 5-star quality standards",
|
||||
"Transparent pricing upfront",
|
||||
"Reliable scheduling & professional team",
|
||||
],
|
||||
"Custom designs tailored to your vision", "Consistent 5-star quality standards", "Transparent pricing upfront", "Reliable scheduling & professional team"],
|
||||
}}
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
@@ -176,55 +148,20 @@ export default function HomePage() {
|
||||
description="We specialize in comprehensive landscaping services designed to enhance and maintain your outdoor spaces year-round."
|
||||
products={[
|
||||
{
|
||||
id: "lawn-care",
|
||||
brand: "Maintenance",
|
||||
name: "Lawn Care & Maintenance",
|
||||
price: "Starting $149",
|
||||
rating: 5,
|
||||
reviewCount: "147 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bsiywv&_wi=1",
|
||||
imageAlt: "Professional lawn care and maintenance",
|
||||
},
|
||||
id: "lawn-care", brand: "Maintenance", name: "Lawn Care & Maintenance", price: "Starting $149", rating: 5,
|
||||
reviewCount: "147 reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bsiywv&_wi=1", imageAlt: "Professional lawn care and maintenance"},
|
||||
{
|
||||
id: "landscape-design",
|
||||
brand: "Design",
|
||||
name: "Landscape Design",
|
||||
price: "Custom Quote",
|
||||
rating: 5,
|
||||
reviewCount: "89 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=74yjca&_wi=1",
|
||||
imageAlt: "Custom landscape design services",
|
||||
},
|
||||
id: "landscape-design", brand: "Design", name: "Landscape Design", price: "Custom Quote", rating: 5,
|
||||
reviewCount: "89 reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=74yjca&_wi=1", imageAlt: "Custom landscape design services"},
|
||||
{
|
||||
id: "mulching",
|
||||
brand: "Planting",
|
||||
name: "Mulching & Planting",
|
||||
price: "Starting $199",
|
||||
rating: 5,
|
||||
reviewCount: "123 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=p37r0q&_wi=1",
|
||||
imageAlt: "Professional mulching and planting services",
|
||||
},
|
||||
id: "mulching", brand: "Planting", name: "Mulching & Planting", price: "Starting $199", rating: 5,
|
||||
reviewCount: "123 reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=p37r0q&_wi=1", imageAlt: "Professional mulching and planting services"},
|
||||
{
|
||||
id: "hardscaping",
|
||||
brand: "Construction",
|
||||
name: "Hardscaping",
|
||||
price: "Custom Quote",
|
||||
rating: 5,
|
||||
reviewCount: "98 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=sgn3lt&_wi=1",
|
||||
imageAlt: "Professional hardscaping and patio work",
|
||||
},
|
||||
id: "hardscaping", brand: "Construction", name: "Hardscaping", price: "Custom Quote", rating: 5,
|
||||
reviewCount: "98 reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=sgn3lt&_wi=1", imageAlt: "Professional hardscaping and patio work"},
|
||||
{
|
||||
id: "seasonal",
|
||||
brand: "Maintenance",
|
||||
name: "Seasonal Cleanups",
|
||||
price: "Starting $179",
|
||||
rating: 5,
|
||||
reviewCount: "156 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9wl09z&_wi=1",
|
||||
imageAlt: "Seasonal yard cleanup services",
|
||||
},
|
||||
id: "seasonal", brand: "Maintenance", name: "Seasonal Cleanups", price: "Starting $179", rating: 5,
|
||||
reviewCount: "156 reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9wl09z&_wi=1", imageAlt: "Seasonal yard cleanup services"},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
@@ -242,65 +179,23 @@ export default function HomePage() {
|
||||
description="Explore 150+ completed landscaping projects showcasing our expertise and attention to detail. From residential yards to complete outdoor transformations."
|
||||
products={[
|
||||
{
|
||||
id: "proj-1",
|
||||
brand: "Project",
|
||||
name: "Modern Backyard Oasis",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3omekp&_wi=1",
|
||||
imageAlt: "Modern backyard landscaping project",
|
||||
},
|
||||
id: "proj-1", brand: "Project", name: "Modern Backyard Oasis", price: "Completed", rating: 5,
|
||||
reviewCount: "Client Featured", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3omekp&_wi=1", imageAlt: "Modern backyard landscaping project"},
|
||||
{
|
||||
id: "proj-2",
|
||||
brand: "Project",
|
||||
name: "Patio & Hardscape Installation",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d8jye7&_wi=1",
|
||||
imageAlt: "Professional patio installation project",
|
||||
},
|
||||
id: "proj-2", brand: "Project", name: "Patio & Hardscape Installation", price: "Completed", rating: 5,
|
||||
reviewCount: "Client Featured", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d8jye7&_wi=1", imageAlt: "Professional patio installation project"},
|
||||
{
|
||||
id: "proj-3",
|
||||
brand: "Project",
|
||||
name: "Garden Design & Planting",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s7a3dg&_wi=1",
|
||||
imageAlt: "Custom garden design and planting",
|
||||
},
|
||||
id: "proj-3", brand: "Project", name: "Garden Design & Planting", price: "Completed", rating: 5,
|
||||
reviewCount: "Client Featured", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s7a3dg&_wi=1", imageAlt: "Custom garden design and planting"},
|
||||
{
|
||||
id: "proj-4",
|
||||
brand: "Project",
|
||||
name: "Front Yard Transformation",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ivpjri&_wi=1",
|
||||
imageAlt: "Front yard landscaping transformation",
|
||||
},
|
||||
id: "proj-4", brand: "Project", name: "Front Yard Transformation", price: "Completed", rating: 5,
|
||||
reviewCount: "Client Featured", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ivpjri&_wi=1", imageAlt: "Front yard landscaping transformation"},
|
||||
{
|
||||
id: "proj-5",
|
||||
brand: "Project",
|
||||
name: "Complete Yard Makeover",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dqx2cy&_wi=1",
|
||||
imageAlt: "Complete yard landscaping makeover",
|
||||
},
|
||||
id: "proj-5", brand: "Project", name: "Complete Yard Makeover", price: "Completed", rating: 5,
|
||||
reviewCount: "Client Featured", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dqx2cy&_wi=1", imageAlt: "Complete yard landscaping makeover"},
|
||||
{
|
||||
id: "proj-6",
|
||||
brand: "Project",
|
||||
name: "Outdoor Living Space",
|
||||
price: "Completed",
|
||||
rating: 5,
|
||||
reviewCount: "Client Featured",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=oh4eaw&_wi=1",
|
||||
imageAlt: "Outdoor living space with hardscaping",
|
||||
},
|
||||
id: "proj-6", brand: "Project", name: "Outdoor Living Space", price: "Completed", rating: 5,
|
||||
reviewCount: "Client Featured", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=oh4eaw&_wi=1", imageAlt: "Outdoor living space with hardscaping"},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
@@ -318,55 +213,18 @@ export default function HomePage() {
|
||||
description="Join 21+ satisfied customers who have transformed their outdoor spaces with Sierra & Sons Landscaping."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Mitchell",
|
||||
role: "Homeowner",
|
||||
testimonial: "Absolutely fantastic! Sierra & Sons transformed our neglected backyard into a beautiful outdoor retreat. Professional, courteous, and meticulous attention to detail.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=2",
|
||||
imageAlt: "Sarah Mitchell testimonial",
|
||||
},
|
||||
id: "1", name: "Sarah Mitchell", role: "Homeowner", testimonial: "Absolutely fantastic! Sierra & Sons transformed our neglected backyard into a beautiful outdoor retreat. Professional, courteous, and meticulous attention to detail.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=2", imageAlt: "Sarah Mitchell testimonial"},
|
||||
{
|
||||
id: "2",
|
||||
name: "David Russo",
|
||||
role: "Property Owner",
|
||||
testimonial: "I've worked with them for 5 years. Consistent quality, reliable service, and they truly understand what landscaping excellence means. Highly recommended!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=2",
|
||||
imageAlt: "David Russo testimonial",
|
||||
},
|
||||
id: "2", name: "David Russo", role: "Property Owner", testimonial: "I've worked with them for 5 years. Consistent quality, reliable service, and they truly understand what landscaping excellence means. Highly recommended!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=2", imageAlt: "David Russo testimonial"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Patricia Garcia",
|
||||
role: "Homeowner",
|
||||
testimonial: "The team was punctual, professional, and delivered exactly what was promised. Our front yard is now the envy of the neighborhood. Worth every penny!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=2",
|
||||
imageAlt: "Patricia Garcia testimonial",
|
||||
},
|
||||
id: "3", name: "Patricia Garcia", role: "Homeowner", testimonial: "The team was punctual, professional, and delivered exactly what was promised. Our front yard is now the envy of the neighborhood. Worth every penny!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=2", imageAlt: "Patricia Garcia testimonial"},
|
||||
{
|
||||
id: "4",
|
||||
name: "James Anderson",
|
||||
role: "Property Manager",
|
||||
testimonial: "Best landscaping service in Perth Amboy. They handle our commercial properties with the same care and professionalism as residential clients.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yt2gba&_wi=1",
|
||||
imageAlt: "James Anderson testimonial",
|
||||
},
|
||||
id: "4", name: "James Anderson", role: "Property Manager", testimonial: "Best landscaping service in Perth Amboy. They handle our commercial properties with the same care and professionalism as residential clients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yt2gba&_wi=1", imageAlt: "James Anderson testimonial"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Maria Lopez",
|
||||
role: "Homeowner",
|
||||
testimonial: "Family-owned business that truly cares about their work. They listened to our vision and exceeded all expectations. Will definitely use them again!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b2cqiu&_wi=1",
|
||||
imageAlt: "Maria Lopez testimonial",
|
||||
},
|
||||
id: "5", name: "Maria Lopez", role: "Homeowner", testimonial: "Family-owned business that truly cares about their work. They listened to our vision and exceeded all expectations. Will definitely use them again!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b2cqiu&_wi=1", imageAlt: "Maria Lopez testimonial"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Thomas Bennett",
|
||||
role: "Homeowner",
|
||||
testimonial: "Outstanding results! The crew was efficient, respectful of our property, and left everything clean. This is what professional landscaping should look like.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5zfgex&_wi=1",
|
||||
imageAlt: "Thomas Bennett testimonial",
|
||||
},
|
||||
id: "6", name: "Thomas Bennett", role: "Homeowner", testimonial: "Outstanding results! The crew was efficient, respectful of our property, and left everything clean. This is what professional landscaping should look like.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5zfgex&_wi=1", imageAlt: "Thomas Bennett testimonial"},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
@@ -379,23 +237,9 @@ export default function HomePage() {
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
names={[
|
||||
"Landscaping Association",
|
||||
"Local Business Bureau",
|
||||
"NJ Contractors",
|
||||
"Green Industry Association",
|
||||
"Professional Standards",
|
||||
"Community Excellence",
|
||||
"Trusted Service Provider",
|
||||
]}
|
||||
"Landscaping Association", "Local Business Bureau", "NJ Contractors", "Green Industry Association", "Professional Standards", "Community Excellence", "Trusted Service Provider"]}
|
||||
logos={[
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cznq18",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0vji6z",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=om4dcv",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ixuzhf",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=o8q6e7",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mmroa0",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=kleeg6",
|
||||
]}
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cznq18", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0vji6z", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=om4dcv", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ixuzhf", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=o8q6e7", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mmroa0", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=kleeg6"]}
|
||||
title="Trusted & Certified"
|
||||
description="Licensed, insured, and recognized by industry leaders. We maintain the highest standards of professionalism and quality."
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
@@ -20,18 +21,16 @@ export default function ReviewsPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Lawn Care", href: "/" },
|
||||
{ label: "Landscape Design", href: "/" },
|
||||
{ label: "Mulching & Planting", href: "/" },
|
||||
{ label: "Hardscaping", href: "/" },
|
||||
{ label: "Seasonal Cleanup", href: "/" },
|
||||
title: "Services", items: [
|
||||
{ label: "Lawn Care", href: "/services" },
|
||||
{ label: "Landscape Design", href: "/services" },
|
||||
{ label: "Mulching & Planting", href: "/services" },
|
||||
{ label: "Hardscaping", href: "/services" },
|
||||
{ label: "Seasonal Cleanup", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
@@ -39,23 +38,15 @@ export default function ReviewsPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{
|
||||
label: "Address: 726 Raritan Ave",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{
|
||||
label: "Perth Amboy, NJ 08861",
|
||||
href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861",
|
||||
},
|
||||
{ label: "Address: 726 Raritan Ave", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Perth Amboy, NJ 08861", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Hours: Open 8:00 AM", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
@@ -63,6 +54,51 @@ export default function ReviewsPage() {
|
||||
},
|
||||
];
|
||||
|
||||
const allReviews = [
|
||||
{
|
||||
id: "1", name: "Sarah Mitchell", role: "Homeowner", testimonial: "Absolutely fantastic! Sierra & Sons transformed our neglected backyard into a beautiful outdoor retreat. Professional, courteous, and meticulous attention to detail. We couldn't be happier!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=2", imageAlt: "Sarah Mitchell"},
|
||||
{
|
||||
id: "2", name: "David Russo", role: "Property Owner", testimonial: "I've worked with them for 5 years. Consistent quality, reliable service, and they truly understand what landscaping excellence means. Highly recommended!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=2", imageAlt: "David Russo"},
|
||||
{
|
||||
id: "3", name: "Patricia Garcia", role: "Homeowner", testimonial: "The team was punctual, professional, and delivered exactly what was promised. Our front yard is now the envy of the neighborhood. Worth every penny!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=2", imageAlt: "Patricia Garcia"},
|
||||
{
|
||||
id: "4", name: "James Anderson", role: "Property Manager", testimonial: "Best landscaping service in Perth Amboy. They handle our commercial properties with the same care and professionalism as residential clients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yt2gba&_wi=1", imageAlt: "James Anderson"},
|
||||
{
|
||||
id: "5", name: "Maria Lopez", role: "Homeowner", testimonial: "Family-owned business that truly cares about their work. They listened to our vision and exceeded all expectations. Will definitely use them again!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b2cqiu&_wi=1", imageAlt: "Maria Lopez"},
|
||||
{
|
||||
id: "6", name: "Thomas Bennett", role: "Homeowner", testimonial: "Outstanding results! The crew was efficient, respectful of our property, and left everything clean. This is what professional landscaping should look like.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5zfgex&_wi=1", imageAlt: "Thomas Bennett"},
|
||||
{
|
||||
id: "7", name: "Michael Torres", role: "Homeowner", testimonial: "Sierra & Sons completely transformed our backyard! Professional, reliable, and exceptional attention to detail. Highly recommended!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=1", imageAlt: "Michael Torres"},
|
||||
{
|
||||
id: "8", name: "Jennifer Chen", role: "Homeowner", testimonial: "Best landscaping service in Perth Amboy. They show up on time, do quality work, and truly care about customer satisfaction.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=1", imageAlt: "Jennifer Chen"},
|
||||
{
|
||||
id: "9", name: "Robert Kowalski", role: "Property Owner", testimonial: "Five years of working with Sierra & Sons. Consistent, professional, and always deliver beyond expectations. Family business that treats you like family!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=1", imageAlt: "Robert Kowalski"},
|
||||
{
|
||||
id: "10", name: "Angela Martinez", role: "Homeowner", testimonial: "Fantastic experience from start to finish. The team transformed our overgrown yard into a beautiful landscape. Truly professional and reliable!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3omekp&_wi=1", imageAlt: "Angela Martinez"},
|
||||
{
|
||||
id: "11", name: "Christopher Lee", role: "Property Manager", testimonial: "We hired Sierra & Sons for multiple properties. Consistently excellent work and customer service. They're reliable, professional, and affordable.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d8jye7&_wi=1", imageAlt: "Christopher Lee"},
|
||||
{
|
||||
id: "12", name: "Laura Williamson", role: "Homeowner", testimonial: "Amazing work on our landscape design. They took our ideas and made them even better. The attention to detail is incredible!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s7a3dg&_wi=1", imageAlt: "Laura Williamson"},
|
||||
{
|
||||
id: "13", name: "Kevin O'Brien", role: "Homeowner", testimonial: "Excellent hardscaping work. They built our patio perfectly and even went above and beyond. Can't recommend them enough!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ivpjri&_wi=1", imageAlt: "Kevin O'Brien"},
|
||||
{
|
||||
id: "14", name: "Stephanie White", role: "Homeowner", testimonial: "Sierra & Sons provided exceptional service for our spring cleanup. Professional crew, fair pricing, and beautiful results!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dqx2cy&_wi=1", imageAlt: "Stephanie White"},
|
||||
{
|
||||
id: "15", name: "Richard Jackson", role: "Property Owner", testimonial: "Best investment in our home. Sierra & Sons created a backyard paradise. Professional, thorough, and amazing results!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=oh4eaw&_wi=1", imageAlt: "Richard Jackson"},
|
||||
{
|
||||
id: "16", name: "Katherine Sanchez", role: "Homeowner", testimonial: "From consultation to completion, everything was perfect. Sierra & Sons really knows their craft. Highly satisfied!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=kleeg6&_wi=1", imageAlt: "Katherine Sanchez"},
|
||||
{
|
||||
id: "17", name: "Daniel Park", role: "Homeowner", testimonial: "Professional crew, quality materials, and attention to every detail. Our lawn has never looked better!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mmroa0&_wi=1", imageAlt: "Daniel Park"},
|
||||
{
|
||||
id: "18", name: "Nicole Adams", role: "Homeowner", testimonial: "Sierra & Sons is the real deal. Licensed, insured, professional, and they deliver beautiful results every time!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ixuzhf&_wi=1", imageAlt: "Nicole Adams"},
|
||||
{
|
||||
id: "19", name: "George Hall", role: "Property Owner", testimonial: "Incredible transformation! Sierra & Sons took our bare yard and created a landscaping masterpiece. Couldn't be happier!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=om4dcv&_wi=1", imageAlt: "George Hall"},
|
||||
{
|
||||
id: "20", name: "Rachel Green", role: "Homeowner", testimonial: "Fantastic mulching and planting service! Our landscape beds look amazing, and the plants are thriving. Highly recommend!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0vji6z&_wi=1", imageAlt: "Rachel Green"},
|
||||
{
|
||||
id: "21", name: "Mark Thompson", role: "Homeowner", testimonial: "Sierra & Sons provided exceptional fall cleanup service. They were thorough, professional, and left our property immaculate!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cznq18&_wi=1", imageAlt: "Mark Thompson"},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -80,71 +116,36 @@ export default function ReviewsPage() {
|
||||
<NavbarStyleApple brandName="Sierra & Sons" navItems={navItems} />
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
title="Customer Reviews & Testimonials"
|
||||
description="Discover why homeowners and businesses in Perth Amboy trust Sierra & Sons for their landscaping needs. Read authentic 5-star reviews from satisfied customers."
|
||||
tag="5.0 Stars • 21 Reviews"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Get Free Quote", href: "/services" },
|
||||
{ text: "Call Now", href: "tel:(848) 203-4258" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3omekp&_wi=1", imageAlt: "Customer testimonials"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="What Our Customers Say"
|
||||
description="Join 21+ satisfied customers who have transformed their outdoor spaces with Sierra & Sons Landscaping."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Mitchell",
|
||||
role: "Homeowner",
|
||||
testimonial:
|
||||
"Absolutely fantastic! Sierra & Sons transformed our neglected backyard into a beautiful outdoor retreat. Professional, courteous, and meticulous attention to detail.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=4",
|
||||
imageAlt: "Sarah Mitchell testimonial",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "David Russo",
|
||||
role: "Property Owner",
|
||||
testimonial:
|
||||
"I've worked with them for 5 years. Consistent quality, reliable service, and they truly understand what landscaping excellence means. Highly recommended!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=4",
|
||||
imageAlt: "David Russo testimonial",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Patricia Garcia",
|
||||
role: "Homeowner",
|
||||
testimonial:
|
||||
"The team was punctual, professional, and delivered exactly what was promised. Our front yard is now the envy of the neighborhood. Worth every penny!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=4",
|
||||
imageAlt: "Patricia Garcia testimonial",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James Anderson",
|
||||
role: "Property Manager",
|
||||
testimonial:
|
||||
"Best landscaping service in Perth Amboy. They handle our commercial properties with the same care and professionalism as residential clients.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yt2gba&_wi=2",
|
||||
imageAlt: "James Anderson testimonial",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Maria Lopez",
|
||||
role: "Homeowner",
|
||||
testimonial:
|
||||
"Family-owned business that truly cares about their work. They listened to our vision and exceeded all expectations. Will definitely use them again!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b2cqiu&_wi=2",
|
||||
imageAlt: "Maria Lopez testimonial",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Thomas Bennett",
|
||||
role: "Homeowner",
|
||||
testimonial:
|
||||
"Outstanding results! The crew was efficient, respectful of our property, and left everything clean. This is what professional landscaping should look like.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5zfgex&_wi=2",
|
||||
imageAlt: "Thomas Bennett testimonial",
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
title="All 21 Customer Reviews"
|
||||
description="Real reviews from real customers who have experienced our professional landscaping services. Every review reflects our commitment to excellence and customer satisfaction."
|
||||
testimonials={allReviews}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="5-Star Rating with 21 Reviews"
|
||||
tag="Verified 5-Star Reviews"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
@@ -152,14 +153,14 @@ export default function ReviewsPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get Started Today"
|
||||
tag="Join Our 21 Satisfied Customers"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Transform Your Outdoor Space?"
|
||||
description="Contact Sierra & Sons Landscaping for a free consultation. Our team is ready to help you create the yard of your dreams."
|
||||
title="Ready to Become Our Next 5-Star Review?"
|
||||
description="Experience the same professional landscaping service that has earned us 21 five-star reviews. Contact Sierra & Sons for a free consultation today."
|
||||
buttons={[
|
||||
{ text: "Get Free Quote", href: "/" },
|
||||
{ text: "Call (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ text: "Get Free Quote", href: "tel:(848) 203-4258" },
|
||||
{ text: "Schedule Consultation", href: "tel:(848) 203-4258" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
@@ -176,4 +177,4 @@ export default function ReviewsPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Star, HelpCircle, Phone } from "lucide-react";
|
||||
import { CheckCircle, Zap, Leaf, Hammer, Sparkles, Phone } from "lucide-react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
const navItems = [
|
||||
@@ -22,8 +22,7 @@ export default function ServicesPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{ label: "Lawn Care", href: "/services" },
|
||||
{ label: "Landscape Design", href: "/services" },
|
||||
{ label: "Mulching & Planting", href: "/services" },
|
||||
@@ -32,17 +31,15 @@ export default function ServicesPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
{ label: "Reviews", href: "/" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Contact", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Phone: (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ label: "Address: 726 Raritan Ave", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
{ label: "Perth Amboy, NJ 08861", href: "https://maps.google.com/?q=726+Raritan+Ave+Perth+Amboy+NJ+08861" },
|
||||
@@ -50,8 +47,7 @@ export default function ServicesPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
@@ -76,164 +72,140 @@ export default function ServicesPage() {
|
||||
<NavbarStyleApple brandName="Sierra & Sons" navItems={navItems} />
|
||||
</div>
|
||||
|
||||
<div id="services-detail" data-section="services-detail">
|
||||
<ProductCardTwo
|
||||
title="Our Service Specialties"
|
||||
description="We specialize in comprehensive landscaping services designed to enhance and maintain your outdoor spaces year-round. Each service is tailored to meet your specific needs with professional expertise and attention to detail."
|
||||
products={[
|
||||
{
|
||||
id: "lawn-care",
|
||||
brand: "Maintenance",
|
||||
name: "Lawn Care & Maintenance",
|
||||
price: "Starting $149",
|
||||
rating: 5,
|
||||
reviewCount: "147 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bsiywv&_wi=2",
|
||||
imageAlt: "Professional lawn care and maintenance",
|
||||
},
|
||||
{
|
||||
id: "landscape-design",
|
||||
brand: "Design",
|
||||
name: "Landscape Design",
|
||||
price: "Custom Quote",
|
||||
rating: 5,
|
||||
reviewCount: "89 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=74yjca&_wi=2",
|
||||
imageAlt: "Custom landscape design services",
|
||||
},
|
||||
{
|
||||
id: "mulching",
|
||||
brand: "Planting",
|
||||
name: "Mulching & Planting",
|
||||
price: "Starting $199",
|
||||
rating: 5,
|
||||
reviewCount: "123 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=p37r0q&_wi=2",
|
||||
imageAlt: "Professional mulching and planting services",
|
||||
},
|
||||
{
|
||||
id: "hardscaping",
|
||||
brand: "Construction",
|
||||
name: "Hardscaping",
|
||||
price: "Custom Quote",
|
||||
rating: 5,
|
||||
reviewCount: "98 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=sgn3lt&_wi=2",
|
||||
imageAlt: "Professional hardscaping and patio work",
|
||||
},
|
||||
{
|
||||
id: "seasonal",
|
||||
brand: "Maintenance",
|
||||
name: "Seasonal Cleanups",
|
||||
price: "Starting $179",
|
||||
rating: 5,
|
||||
reviewCount: "156 reviews",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9wl09z&_wi=2",
|
||||
imageAlt: "Seasonal yard cleanup services",
|
||||
},
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
title="Professional Landscaping Services"
|
||||
description="Comprehensive outdoor solutions tailored to your needs. From routine maintenance to complete transformations, discover what Sierra & Sons can do for your property."
|
||||
tag="Expert Service Specialists"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Get Free Quote", href: "#pricing" },
|
||||
{ text: "Call Now", href: "tel:(848) 203-4258" },
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bsiywv&_wi=1", imageAlt: "Lawn care services"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-testimonials" data-section="services-testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="Client Success Stories"
|
||||
description="Real feedback from Perth Amboy residents who have experienced our professional landscaping services firsthand."
|
||||
testimonials={[
|
||||
<div id="services-detail" data-section="services-detail">
|
||||
<FeatureCardNineteen
|
||||
title="Our Comprehensive Service Portfolio"
|
||||
description="Each service is delivered with expert attention to detail and commitment to excellence."
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Michael Torres",
|
||||
role: "Homeowner - Lawn Care",
|
||||
testimonial: "Sierra & Sons handles our lawn maintenance monthly. The consistency and quality are unmatched. Our yard has never looked better throughout the seasons.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=8kt8zn&_wi=3",
|
||||
imageAlt: "Michael Torres testimonial",
|
||||
id: 1,
|
||||
tag: "Maintenance", title: "Lawn Care & Maintenance", subtitle: "Weekly & Bi-Weekly Services", description: "Professional lawn mowing, edging, trimming, and fertilization to keep your grass healthy and vibrant throughout the year. Our team uses commercial-grade equipment and proven techniques.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bsiywv&_wi=1", imageAlt: "Professional lawn care", buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Linda Rodriguez",
|
||||
role: "Homeowner - Landscape Design",
|
||||
testimonial: "They designed and installed a completely custom landscape for us. The process was smooth, professional, and the results exceeded our vision. Worth every investment!",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5p1jgn&_wi=3",
|
||||
imageAlt: "Linda Rodriguez testimonial",
|
||||
id: 2,
|
||||
tag: "Design", title: "Landscape Design", subtitle: "Custom Vision to Reality", description: "We transform your landscape vision into a stunning outdoor space. Our designers work with you to create cohesive designs that enhance curb appeal and increase property value.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=74yjca&_wi=1", imageAlt: "Landscape design", buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Robert Kowalski",
|
||||
role: "Property Owner - Multiple Services",
|
||||
testimonial: "We use Sierra & Sons for hardscaping, mulching, and seasonal cleanup. Their team coordinates beautifully, and they maintain our properties with exceptional care.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j88mse&_wi=3",
|
||||
imageAlt: "Robert Kowalski testimonial",
|
||||
id: 3,
|
||||
tag: "Planting", title: "Mulching & Planting", subtitle: "Plant Selection & Installation", description: "Expert mulching for moisture retention and weed control, plus professional plant installation. We select species suited to Perth Amboy's climate for long-term beauty and health.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=p37r0q&_wi=1", imageAlt: "Mulching and planting", buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
tag: "Construction", title: "Hardscaping", subtitle: "Patios, Walkways & Retaining Walls", description: "Custom hardscape installations including patios, decks, walkways, retaining walls, and outdoor living structures. Built to last with quality materials and expert craftsmanship.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=sgn3lt&_wi=1", imageAlt: "Hardscaping work", buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
tag: "Seasonal", title: "Seasonal Cleanups", subtitle: "Spring & Fall Maintenance", description: "Comprehensive spring cleanups and fall leaf removal. We prepare your landscape for each season, managing debris and ensuring your property looks pristine year-round.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9wl09z&_wi=1", imageAlt: "Seasonal cleanup", buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="Complete Solutions"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
title="Service Pricing & Packages"
|
||||
description="Flexible pricing options for every budget. All services include professional consultation and guaranteed satisfaction."
|
||||
plans={[
|
||||
{
|
||||
id: "lawn-care", badge: "Most Popular", badgeIcon: Leaf,
|
||||
price: "$149+", name: "Lawn Care Plans", buttons: [{ text: "Get Quote", href: "tel:(848) 203-4258" }],
|
||||
features: [
|
||||
"Weekly or bi-weekly mowing", "Professional edging & trimming", "Seasonal fertilization programs", "Weed control treatment", "Flexible scheduling", "Quality equipment included"],
|
||||
},
|
||||
{
|
||||
id: "design", badge: "Custom", badgeIcon: Sparkles,
|
||||
price: "Custom", name: "Landscape Design", buttons: [{ text: "Schedule Consultation", href: "tel:(848) 203-4258" }],
|
||||
features: [
|
||||
"Site analysis & consultation", "Custom design renderings", "Plant selection guidance", "Installation planning", "Budget-friendly options", "Professional recommendations"],
|
||||
},
|
||||
{
|
||||
id: "mulching", price: "$199+", name: "Mulching & Planting", buttons: [{ text: "Get Quote", href: "tel:(848) 203-4258" }],
|
||||
features: [
|
||||
"Premium mulch installation", "Weed barrier application", "Plant bed creation", "Tree & shrub planting", "Soil preparation included", "Spring/Fall available"],
|
||||
},
|
||||
{
|
||||
id: "hardscaping", badge: "Premium", badgeIcon: Hammer,
|
||||
price: "Custom", name: "Hardscaping Projects", buttons: [{ text: "Schedule Consultation", href: "tel:(848) 203-4258" }],
|
||||
features: [
|
||||
"Patio & deck construction", "Walkway installation", "Retaining walls & borders", "Outdoor structures", "Licensed & insured work", "Quality material selection"],
|
||||
},
|
||||
{
|
||||
id: "seasonal", price: "$179+", name: "Seasonal Cleanup", buttons: [{ text: "Book Service", href: "tel:(848) 203-4258" }],
|
||||
features: [
|
||||
"Spring cleanup & prep", "Fall leaf removal", "Debris hauling included", "Property inspection", "Flexible scheduling", "Professional crew"],
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="Verified Client Reviews"
|
||||
tagIcon={Star}
|
||||
animationType="slide-up"
|
||||
tag="Transparent Pricing"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-faq" data-section="services-faq">
|
||||
<FaqDouble
|
||||
title="Service Questions & Answers"
|
||||
description="Find detailed answers about our landscaping services, pricing, scheduling, and more."
|
||||
faqs={[
|
||||
<div id="service-benefits" data-section="service-benefits">
|
||||
<FeatureCardNineteen
|
||||
title="Why Choose Our Services"
|
||||
description="Discover the benefits that set Sierra & Sons apart from the competition."
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What services do you offer?",
|
||||
content: "We offer comprehensive landscaping services including lawn care & maintenance, landscape design, mulching & planting, hardscaping, and seasonal cleanups. Each service can be customized to fit your property and budget.",
|
||||
},
|
||||
id: 1,
|
||||
tag: "Quality", title: "Expert Craftsmanship", subtitle: "15+ Years Experience", description: "Our team brings decades of combined experience in professional landscaping. We know what works in Perth Amboy's climate and soil conditions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3omekp&_wi=1", imageAlt: "Expert craftsmanship"},
|
||||
{
|
||||
id: "2",
|
||||
title: "How often should I schedule lawn care?",
|
||||
content: "During the growing season (spring through fall), we recommend weekly or bi-weekly lawn maintenance. In winter, maintenance can be reduced. We'll work with you to create a custom schedule based on your needs.",
|
||||
},
|
||||
id: 2,
|
||||
tag: "Trust", title: "Fully Licensed & Insured", subtitle: "Complete Coverage", description: "All work is backed by full licensing and comprehensive insurance coverage. Your property is protected with every project we undertake.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d8jye7&_wi=1", imageAlt: "Licensed and insured"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Can you work with my budget?",
|
||||
content: "Yes! We offer services at various price points. Whether you need basic maintenance starting at $149 or custom design work, we can discuss options that fit your budget without compromising quality.",
|
||||
},
|
||||
id: 3,
|
||||
tag: "Reliability", title: "Consistent 5-Star Service", subtitle: "21 Satisfied Reviews", description: "Our reputation is built on consistent quality and customer satisfaction. We stand behind every project with a satisfaction guarantee.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s7a3dg&_wi=1", imageAlt: "5-star service"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Do you handle emergency landscaping needs?",
|
||||
content: "Absolutely. We can accommodate emergency storm cleanup, emergency repairs, and urgent maintenance needs. Call us at (848) 203-4258 to discuss your situation and availability.",
|
||||
},
|
||||
id: 4,
|
||||
tag: "Transparency", title: "Upfront, Honest Pricing", subtitle: "No Hidden Fees", description: "We provide detailed quotes upfront with no surprises. What you see is what you get, with transparent communication throughout every project.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ivpjri&_wi=1", imageAlt: "Transparent pricing"},
|
||||
{
|
||||
id: "5",
|
||||
title: "How do you price custom landscaping projects?",
|
||||
content: "We provide free on-site estimates for all custom projects. Pricing is based on project scope, materials needed, labor, and timeline. We give transparent quotes with no hidden fees upfront.",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "What areas do you service?",
|
||||
content: "We primarily serve Perth Amboy and surrounding communities in New Jersey. Our service radius extends up to 20 miles from Perth Amboy. Contact us to confirm we service your area.",
|
||||
},
|
||||
id: 5,
|
||||
tag: "Local", title: "Family-Owned Business", subtitle: "Community Focused", description: "As a family business, we treat every customer like family. We're invested in our Perth Amboy community and its long-term success.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=dqx2cy&_wi=1", imageAlt: "Family business"},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="Service Information"
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-cta" data-section="services-cta">
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Ready to Get Started?"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Schedule Your Free Landscaping Consultation"
|
||||
description="Let's discuss which services are right for your property. Our team will provide a detailed estimate and answer all your questions."
|
||||
title="Transform Your Outdoor Space Today"
|
||||
description="Contact Sierra & Sons Landscaping for a free consultation. Our team is ready to discuss your project and provide a detailed quote."
|
||||
buttons={[
|
||||
{ text: "Request Free Estimate", href: "/services" },
|
||||
{ text: "Call (848) 203-4258", href: "tel:(848) 203-4258" },
|
||||
{ text: "Get Free Quote", href: "tel:(848) 203-4258" },
|
||||
{ text: "Schedule Consultation", href: "tel:(848) 203-4258" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
@@ -250,4 +222,4 @@ export default function ServicesPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user