49 lines
2.0 KiB
TypeScript
49 lines
2.0 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
|
|
|
export default function IrrigationPage() {
|
|
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: "Tree Care & Removal", 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" }}
|
|
/>
|
|
<FeatureCardMedia
|
|
title="Irrigation Services"
|
|
description="Keep your landscape green with our professional irrigation installation and repair services."
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{ id: "1", title: "System Installation", description: "Efficient drip and sprinkler system installation.", tag: "Service" },
|
|
{ id: "2", title: "Repairs & Maintenance", description: "Fixing leaks, broken heads, and optimizing timers.", tag: "Service" }
|
|
]}
|
|
/>
|
|
<FooterCard logoText="Ryan Brothers Lawn & Landscape" />
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |