Update src/app/tree-removal-trimming/page.tsx

This commit is contained in:
2026-03-29 03:57:01 +00:00
parent 77b570b9f1
commit ddc72e22ed

View File

@@ -4,47 +4,38 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Phone } from "lucide-react";
export default function TreeServicesPage() {
export default function TreeCarePage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="compact"
sizing="mediumLargeSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Hedge Trimming", id: "/hedge-trimming" },
{ name: "Tree Services", id: "/tree-removal-trimming" },
{ name: "Why Us", id: "/#why-us" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Tree Care", id: "/tree-removal-trimming" },
]}
brandName="Ryan Brothers"
button={{ text: "Get A Quote", href: "tel:4803279024" }}
/>
<HeroLogoBillboard
logoText="Tree Removal & Trimming"
description="Safe tree removal and professional trimming services to enhance yard safety and aesthetics."
buttons={[{ text: "Request a Quote", href: "tel:4803279024" }]}
logoText="Professional Tree Services"
description="Safe removal and expert pruning to maintain the safety and aesthetic appeal of your trees."
buttons={[{ text: "Get A Quote", href: "tel:4803279024" }]}
/>
<ContactSplitForm
title="Book Your Tree Service"
description="Contact us today to discuss your tree service needs."
inputs={[{ name: "name", type: "text", placeholder: "Full Name", required: true }, { name: "email", type: "email", placeholder: "Email", required: true }]}
<FeatureCardSix
title="Tree Maintenance & Safety"
description="Protect your property with certified tree care."
textboxLayout="default"
features={[
{ id: 1, title: "Tree Trimming", description: "Promoting healthy growth and clearance.", imageSrc: "https://images.unsplash.com/photo-1590486803833-1c3dc47d3763?w=800" },
{ id: 2, title: "Tree Removal", description: "Safe, professional removal of hazardous or unwanted trees.", imageSrc: "https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=800" }
]}
/>
<FooterCard logoText="Ryan Brothers Lawn & Landscape" />
<FooterCard />
</ReactLenis>
</ThemeProvider>
);