Compare commits
7 Commits
version_2_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| ff20ffca88 | |||
| 8c16949a42 | |||
| f1866bd305 | |||
| 176238ce77 | |||
| 2b2453ca75 | |||
| e57b2eb3e8 | |||
| d43d29019b |
453
src/app/page.tsx
453
src/app/page.tsx
@@ -2,11 +2,15 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
|
||||
@@ -19,113 +23,456 @@ export default function LandingPage() {
|
||||
contentWidth="compact"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="elevated-border"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Team", id: "#team" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
{
|
||||
name: "Team",
|
||||
id: "#team",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/organic-business-card-template-with-line-art-logo-earth-tone_53876-117645.jpg"
|
||||
logoAlt="Trappers Tree Service Logo"
|
||||
brandName="Trappers Tree Service"
|
||||
button={{ text: "Request Private Consultation", href: "#contact" }}
|
||||
button={{
|
||||
text: "Protect Your Property Today",
|
||||
href: "#contact",
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
title="Cultivating Grandeur & Preservation"
|
||||
description="Our master arborists blend traditional care with technical precision, preserving the legacy of your estate through uncompromising horticultural excellence."
|
||||
tag="The Gold Standard in Arboriculture"
|
||||
buttons={[{ text: "Discover Our Services", href: "#services" }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-black-apron-working-greenhouse_1157-30896.jpg", imageAlt: "Arborist detail" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-caucasian-male-botanist-panama-hat-striped-shirt-exploring-species-field-work-tropical-forest-standing-front-big-plant-reading-information-emergent-tree-manual_273609-6406.jpg", imageAlt: "Estate inspection" }
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
title="Expert Tree Care, Exceptional Service, Peace of Mind"
|
||||
description="Trusted by homeowners for decades, our certified arborists deliver safe, precise tree removal, emergency storm response, and expert preservation—protecting your property and your family with professionalism, honesty, and proven skill."
|
||||
tag="Trusted Arborists"
|
||||
buttons={[
|
||||
{
|
||||
text: "Protect Your Property Today",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
rating={5.0}
|
||||
ratingText="5.0 Star Rated Service"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-black-apron-working-greenhouse_1157-30896.jpg",
|
||||
imageAlt: "Professional arborist climbing a tree with safety gear",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-caucasian-male-botanist-panama-hat-striped-shirt-exploring-species-field-work-tropical-forest-standing-front-big-plant-reading-information-emergent-tree-manual_273609-6406.jpg",
|
||||
imageAlt: "Certified arborist inspecting a large tree at a luxury home",
|
||||
},
|
||||
]}
|
||||
mediaAnimation="opacity"
|
||||
rating={5}
|
||||
ratingText="Rated 5 Stars by Local Homeowners"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Legacy Preservation"
|
||||
description="For three decades, we have defined the intersection of luxury and nature. Our ISA-certified team operates with a commitment to the enduring health of your landscape and the privacy of your estate."
|
||||
tag="Our Philosophy"
|
||||
title="Decades of Expertise, Unwavering Commitment"
|
||||
description="With over 30 years in the field, Trappers Tree Service is the trusted partner for discerning homeowners. Our ISA-certified arborists are passionate about tree health and property safety, combining deep knowledge with state-of-the-art techniques to provide unparalleled tree care. We're dedicated to preserving the beauty and value of your landscape."
|
||||
tag="Our Story"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More About Us",
|
||||
href: "#team",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/asian-man-cutting-trees-using-electrical-chainsaw_1150-5896.jpg"
|
||||
imageAlt="Precision arboriculture"
|
||||
imageAlt="Tree service crew safely working on a large tree"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardNineteen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Precision",
|
||||
title: "Expert Tree Removal",
|
||||
subtitle: "Safe & Efficient",
|
||||
description: "Our certified arborists utilize advanced techniques and state-of-the-art equipment for safe, efficient, and precise tree removal, minimizing impact on your property.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/contented-young-woman-hugging-large-tree-with-blissful-expression-with-copy-space-concept-care-environment_1150-61394.jpg",
|
||||
imageAlt: "Precision tree cutting by an arborist",
|
||||
},
|
||||
{
|
||||
tag: "Urgent Care",
|
||||
title: "Emergency Storm Response",
|
||||
subtitle: "24/7 Availability",
|
||||
description: "When disaster strikes, our rapid response team is available 24/7 to handle storm-damaged trees, ensuring the safety and security of your property.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-s-legs-outside-tent_23-2148696855.jpg",
|
||||
imageAlt: "Tree service crew cleaning up after a storm",
|
||||
},
|
||||
{
|
||||
tag: "Longevity",
|
||||
title: "Tree Health & Preservation",
|
||||
subtitle: "Proactive Care",
|
||||
description: "We offer comprehensive tree health assessments, disease prevention, and preservation strategies to ensure the long-term vitality and beauty of your valuable trees.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500861.jpg",
|
||||
imageAlt: "Arborist inspecting a tree for health and preservation",
|
||||
},
|
||||
]}
|
||||
title="Comprehensive Tree Solutions"
|
||||
description="From delicate pruning to complex removals, our services are tailored to protect your property and enhance your landscape's health and beauty."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="service-packages" data-section="service-packages">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "pkg-1",
|
||||
brand: "Essential",
|
||||
name: "Premier Pruning",
|
||||
price: "Starting at $450",
|
||||
rating: 5,
|
||||
reviewCount: "50+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardener-garden-with-hut-cuts-tree-with-hedgehogs-against-sky_169016-10257.jpg",
|
||||
imageAlt: "Arborist performing precision tree pruning",
|
||||
},
|
||||
{
|
||||
id: "pkg-2",
|
||||
brand: "Advanced",
|
||||
name: "Strategic Removal",
|
||||
price: "Starting at $1,200",
|
||||
rating: 5,
|
||||
reviewCount: "30+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-chopping-wood-with-axe_169016-1837.jpg",
|
||||
imageAlt: "Large tree removal with advanced equipment",
|
||||
},
|
||||
{
|
||||
id: "pkg-3",
|
||||
brand: "Priority",
|
||||
name: "24/7 Emergency Response",
|
||||
price: "Varies",
|
||||
rating: 5,
|
||||
reviewCount: "20+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/older-man-admiring-view-while-backpacking-forest_23-2148641958.jpg",
|
||||
imageAlt: "Emergency tree service team responding to storm damage",
|
||||
},
|
||||
{
|
||||
id: "pkg-4",
|
||||
brand: "Health",
|
||||
name: "Tree Health & Diagnostics",
|
||||
price: "Starting at $300",
|
||||
rating: 5,
|
||||
reviewCount: "25+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-park-ranger-woods_23-2149309525.jpg",
|
||||
imageAlt: "Arborist examining a tree for health issues",
|
||||
},
|
||||
{
|
||||
id: "pkg-5",
|
||||
brand: "Ground",
|
||||
name: "Stump Grinding",
|
||||
price: "Starting at $350",
|
||||
rating: 5,
|
||||
reviewCount: "40+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/relaxed-girl-sitting-log_23-2147617537.jpg",
|
||||
imageAlt: "Stump grinding machine removing a tree stump",
|
||||
},
|
||||
{
|
||||
id: "pkg-6",
|
||||
brand: "New Growth",
|
||||
name: "New Tree Planting",
|
||||
price: "Starting at $600",
|
||||
rating: 5,
|
||||
reviewCount: "15+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-gardener-holding-potted-trees_23-2149391953.jpg",
|
||||
imageAlt: "Young tree being planted in a landscaped garden",
|
||||
},
|
||||
]}
|
||||
title="Tailored Service Packages"
|
||||
description="Discover our specialized tree care packages, designed for complete property protection and peace of mind. Each service is executed with precision and care by our certified team."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardEleven
|
||||
title="Precision in Performance"
|
||||
description="Data-backed excellence for discerning landscapes."
|
||||
animationType="fade-up"
|
||||
textboxLayout="left"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "cycles", title: "Total Preservation Cycles", value: "1,500+", description: "Cumulative projects completed.", videoSrc: "placeholder" },
|
||||
{ id: "masters", title: "ISA Certified Masters", value: "12", description: "Our core technical team.", videoSrc: "placeholder" },
|
||||
{ id: "years", title: "Years of Distinguished Service", value: "30", description: "Decades of estate stewardship.", videoSrc: "placeholder" }
|
||||
{
|
||||
id: "metric-years",
|
||||
value: "30+",
|
||||
title: "Years in Service",
|
||||
description: "Building trust and expertise since 1990.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hardwood-texture-background-design-element_53876-105864.jpg",
|
||||
imageAlt: "Close up of tree rings",
|
||||
},
|
||||
{
|
||||
id: "metric-arborists",
|
||||
value: "10+",
|
||||
title: "Certified Arborists",
|
||||
description: "Our team holds the highest industry certifications for your peace of mind.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500807.jpg",
|
||||
imageAlt: "A group of certified arborists standing together",
|
||||
},
|
||||
{
|
||||
id: "metric-homeowners",
|
||||
value: "1000+",
|
||||
title: "Satisfied Homeowners",
|
||||
description: "Protecting properties and enhancing landscapes across the region.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-woman-sitting-cement-seat-urban-park_23-2148328850.jpg",
|
||||
imageAlt: "A beautiful, well-maintained luxury home with healthy trees",
|
||||
},
|
||||
]}
|
||||
title="Our Commitment in Numbers"
|
||||
description="Experience the difference that expertise and dedication make. Our metrics reflect our unwavering commitment to quality, safety, and client satisfaction."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
title="Masters of the Canopy"
|
||||
description="Our specialists represent the pinnacle of arboricultural expertise, blending aesthetic vision with rigorous safety standards."
|
||||
members={[
|
||||
{ id: "1", name: "John Trapper", role: "Master Arborist", description: "Certified lead arboriculturist with 30 years of field experience.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-gardener-holding-trimmer-working-yard_342744-540.jpg" },
|
||||
{ id: "2", name: "Sarah Miller", role: "Lead Consultant", description: "Specializes in estate preservation and client advocacy.", imageSrc: "http://img.b2bpic.net/free-photo/tourist-by-bonfire-forest_1303-9079.jpg" },
|
||||
{ id: "3", name: "David Chen", role: "Health Specialist", description: "Diagnostics and plant biology expert focusing on tree longevity.", imageSrc: "http://img.b2bpic.net/free-photo/happy-gardeners-growing-coniferous-plants-pots-blonde-woman-holding-small-thuja-working-with-grey-haired-man-glasses-gardening-activity-summer-concept_74855-12856.jpg" }
|
||||
{
|
||||
id: "member-john",
|
||||
name: "John Trapper",
|
||||
role: "Founder & Master Arborist",
|
||||
description: "With over three decades of experience, John leads our team with unparalleled knowledge and a dedication to arboricultural excellence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-gardener-holding-trimmer-working-yard_342744-540.jpg",
|
||||
imageAlt: "Portrait of John Trapper",
|
||||
},
|
||||
{
|
||||
id: "member-sarah",
|
||||
name: "Sarah Miller",
|
||||
role: "Lead Certified Arborist",
|
||||
description: "Sarah combines her passion for tree health with meticulous execution, ensuring every project meets our rigorous standards for safety and quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tourist-by-bonfire-forest_1303-9079.jpg",
|
||||
imageAlt: "Portrait of Sarah Miller",
|
||||
},
|
||||
{
|
||||
id: "member-david",
|
||||
name: "David Chen",
|
||||
role: "Tree Health Specialist",
|
||||
description: "David is our expert in diagnostics and preservation, providing tailored solutions to keep your trees thriving and resilient for years to come.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-gardeners-growing-coniferous-plants-pots-blonde-woman-holding-small-thuja-working-with-grey-haired-man-glasses-gardening-activity-summer-concept_74855-12856.jpg",
|
||||
imageAlt: "Portrait of David Chen",
|
||||
},
|
||||
]}
|
||||
gridVariant="grid"
|
||||
animationType="none"
|
||||
textboxLayout="left"
|
||||
title="Meet Our Certified Arborists"
|
||||
description="Our team consists of highly skilled and ISA-certified professionals dedicated to the art and science of tree care. Trust your property to the experts who prioritize safety and precision."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
title="A Legacy of Satisfaction"
|
||||
description="The preferred choice for estate managers and private residence owners."
|
||||
testimonials={[
|
||||
{ id: "1", title: "Excellent", name: "Eleanor Vance", role: "West Hills Estate", quote: "Incomparable attention to detail and horticultural depth.", imageSrc: "http://img.b2bpic.net/free-photo/cute-woman-have-rest-autumn-park_1157-28817.jpg" },
|
||||
{ id: "2", title: "Professional", name: "Robert Sterling", role: "Meadowbrook Manager", quote: "Professional, discreet, and highly skilled in complex preservation.", imageSrc: "http://img.b2bpic.net/free-photo/successful-bearded-man-employer-interviews-woman-job_273609-4704.jpg" }
|
||||
]}
|
||||
textboxLayout="left"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "test-1",
|
||||
title: "Exceptional Service and Expertise",
|
||||
quote: "Trappers Tree Service transformed our property. Their team was incredibly professional, knowledgeable, and left our trees looking immaculate. Truly superior service!",
|
||||
name: "Eleanor Vance",
|
||||
role: "Homeowner, West Hills",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-woman-have-rest-autumn-park_1157-28817.jpg",
|
||||
imageAlt: "Eleanor Vance, a happy homeowner",
|
||||
},
|
||||
{
|
||||
id: "test-2",
|
||||
title: "Prompt and Reliable Emergency Response",
|
||||
quote: "After a severe storm, Trappers Tree Service was on-site incredibly fast. They handled the fallen trees with precision and professionalism, giving us complete peace of mind.",
|
||||
name: "Robert Sterling",
|
||||
role: "Estate Manager, Meadowbrook",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-bearded-man-employer-interviews-woman-job_273609-4704.jpg",
|
||||
imageAlt: "Robert Sterling, an estate manager",
|
||||
},
|
||||
{
|
||||
id: "test-3",
|
||||
title: "Dedicated to Tree Health and Beauty",
|
||||
quote: "The arborists at Trappers Tree Service truly care about our trees. Their preservation plan has brought new life to our mature oak, and the property looks stunning.",
|
||||
name: "Sophia Rodriguez",
|
||||
role: "Homeowner, Lakeside",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kid-playing-with-paper-plane_23-2151582183.jpg",
|
||||
imageAlt: "Sophia Rodriguez, a satisfied homeowner",
|
||||
},
|
||||
{
|
||||
id: "test-4",
|
||||
title: "Unmatched Professionalism and Craftsmanship",
|
||||
quote: "From the initial consultation to the final cleanup, Trappers Tree Service demonstrated world-class professionalism. They are the only arborists we trust with our estate.",
|
||||
name: "David & Emily Chen",
|
||||
role: "Homeowners, The Highlands",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-trimming-bough-brush-guy-works-backyard_1157-41449.jpg",
|
||||
imageAlt: "David and Emily Chen, a happy couple",
|
||||
},
|
||||
{
|
||||
id: "test-5",
|
||||
title: "Peace of Mind Guaranteed",
|
||||
quote: "Knowing our trees are in the hands of Trappers Tree Service allows us to relax and enjoy our property. Their expertise and transparent communication are simply the best.",
|
||||
name: "Michael Harrison",
|
||||
role: "Homeowner, Green Valley",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/travelers-looking-way_23-2147628908.jpg",
|
||||
imageAlt: "Michael Harrison, a homeowner relaxing in his garden",
|
||||
},
|
||||
]}
|
||||
title="Trusted Voices: What Our Clients Say"
|
||||
description="Our reputation is built on exceptional service and the lasting trust of high-end homeowners across the region. Hear directly from those who rely on our expertise."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "Are your arborists certified?",
|
||||
content: "Yes, all our lead arborists are ISA (International Society of Arboriculture) certified, ensuring they meet the highest industry standards for expertise and safety.",
|
||||
},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "What areas do you serve?",
|
||||
content: "We proudly serve high-end residential properties and estates across the greater metropolitan area and surrounding luxury communities. Please contact us to confirm service availability in your specific location.",
|
||||
},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "How do I get an estimate?",
|
||||
content: "You can request a personalized consultation and estimate by filling out our contact form or calling us directly. We'll schedule a visit to assess your property's specific needs.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/coworkers-using-tablet-arguing-office-lobby_1262-14201.jpg"
|
||||
imageAlt="Arborist consulting with a homeowner on tree care"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
title="Your Questions, Expert Answers"
|
||||
description="We believe in clear communication and complete transparency. Find answers to common questions about our services, processes, and certifications here."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
text="Ready to experience premium tree care? Contact us today for a personalized consultation and protect your investment with Trappers Tree Service."
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule a Consultation",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/organic-business-card-template-with-line-art-logo-earth-tone_53876-117645.jpg"
|
||||
logoAlt="Trappers Tree Service Logo"
|
||||
logoText="Trappers Tree Service"
|
||||
columns={[
|
||||
{ title: "Expertise", items: [{ label: "Precision Removal" }, { label: "Estate Preservation" }, { label: "Health Diagnostics" }] },
|
||||
{ title: "Estate Care", items: [{ label: "Private Consultations" }, { label: "Emergency Response" }] },
|
||||
{ title: "Contact", items: [{ label: "Professional Inquiries" }, { label: "Legacy Support" }] }
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Tree Removal",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Emergency Response",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Tree Preservation",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Stump Grinding",
|
||||
href: "#services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Our Team",
|
||||
href: "#team",
|
||||
},
|
||||
{
|
||||
label: "Testimonials",
|
||||
href: "#testimonials",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Request Service",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+1234567890",
|
||||
},
|
||||
{
|
||||
label: "Email Us",
|
||||
href: "mailto:info@trapperstreeservice.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Trappers Tree Service. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user