Add src/app/hedge-trimming/page.tsx

This commit is contained in:
2026-03-29 03:56:23 +00:00
parent 61bf735d88
commit 69f79cb498

View File

@@ -0,0 +1,51 @@
"use client";
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 FooterCard from '@/components/sections/footer/FooterCard';
export default function HedgeTrimmingPage() {
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"
>
<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" },
]}
brandName="Ryan Brothers"
button={{ text: "Get A Quote", href: "tel:4803279024" }}
/>
<HeroLogoBillboard
logoText="Professional Hedge Trimming"
description="Keep your hedges healthy, clean, and perfectly shaped with our professional trimming services."
buttons={[{ text: "Request a Quote", href: "tel:4803279024" }]}
/>
<ContactSplitForm
title="Book Your Trimming Service"
description="Contact us today to schedule your hedge trimming."
inputs={[{ name: "name", type: "text", placeholder: "Full Name", required: true }, { name: "email", type: "email", placeholder: "Email", required: true }]}
/>
<FooterCard logoText="Ryan Brothers Lawn & Landscape" />
</ReactLenis>
</ThemeProvider>
);
}