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

This commit is contained in:
2026-03-29 03:59:15 +00:00
parent 855f7ecad7
commit c76b5a3218

View File

@@ -6,36 +6,47 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Phone } from "lucide-react";
export default function TreeCarePage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Hedge Trimming", id: "/hedge-trimming" },
{ name: "Tree Care", id: "/tree-removal-trimming" },
]}
brandName="Ryan Brothers"
button={{ text: "Get A Quote", href: "tel:4803279024" }}
/>
<HeroLogoBillboard
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" }]}
/>
<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 />
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Hedge Trimming", id: "/hedge-trimming" },
{ name: "Tree Care", id: "/tree-removal-trimming" },
{ name: "Irrigation", id: "/irrigation" },
{ name: "Rock & Gravel", id: "/rock-gravel" }
]}
brandName="Ryan Brothers"
button={{ text: "Get A Quote", href: "tel:4803279024" }}
/>
</div>
<div id="home" data-section="home">
<HeroLogoBillboard
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" }]}
background={{ variant: "plain" }}
/>
</div>
<div id="services" data-section="services">
<FeatureCardSix
title="Tree Maintenance & Safety"
description="Protect your property with certified tree care."
textboxLayout="default"
useInvertedBackground={false}
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" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard />
</div>
</ReactLenis>
</ThemeProvider>
);