Merge version_1 into main #1
@@ -52,7 +52,7 @@ export default function ContactPage() {
|
||||
description="Custom Cut Landscape is ready to transform your property with professional design and expert installation. Get started with a free estimate today."
|
||||
subdescription="Serving Chagrin Falls, Ohio and surrounding areas with premium landscaping services. Call or submit a quote request to get started."
|
||||
icon={CheckCircle}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-flowers-growing-garden_181624-24120.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-flowers-growing-garden_181624-24120.jpg?_wi=3"
|
||||
imageAlt="green nature background outdoor"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
|
||||
@@ -66,63 +66,63 @@ export default function GalleryPage() {
|
||||
id: "project-1",
|
||||
name: "Luxury Backyard Transformation",
|
||||
price: "Premium Design",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg?_wi=2",
|
||||
imageAlt: "Luxury backyard landscape design modern",
|
||||
},
|
||||
{
|
||||
id: "project-2",
|
||||
name: "Residential Landscape Upgrade",
|
||||
price: "Full Installation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013403.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013403.jpg?_wi=2",
|
||||
imageAlt: "Residential landscape transformation before after",
|
||||
},
|
||||
{
|
||||
id: "project-3",
|
||||
name: "Stone Patio Installation",
|
||||
price: "Hardscape Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girlfriends-relaxing-sitting-armchairs_23-2147850522.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girlfriends-relaxing-sitting-armchairs_23-2147850522.jpg?_wi=2",
|
||||
imageAlt: "Stone patio outdoor entertainment area",
|
||||
},
|
||||
{
|
||||
id: "project-4",
|
||||
name: "Professional Lawn Installation",
|
||||
price: "Lawn Service",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-stylish-smiling-woman-walking-exotic-street-near-hotel-sunny-hot-day-spending-her-vacation-los-angeles_273443-2713.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-stylish-smiling-woman-walking-exotic-street-near-hotel-sunny-hot-day-spending-her-vacation-los-angeles_273443-2713.jpg?_wi=2",
|
||||
imageAlt: "manicured lawn professional landscaping",
|
||||
},
|
||||
{
|
||||
id: "project-5",
|
||||
name: "Landscape Lighting Design",
|
||||
price: "Enhancement Feature",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calm-place-prepared-desk-waiting-food-visitors-evening-time_146671-14404.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calm-place-prepared-desk-waiting-food-visitors-evening-time_146671-14404.jpg?_wi=2",
|
||||
imageAlt: "landscape lighting design outdoor features",
|
||||
},
|
||||
{
|
||||
id: "project-6",
|
||||
name: "Seasonal Planting Design",
|
||||
price: "Seasonal Service",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bouquet-tree-pot_1339-5746.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bouquet-tree-pot_1339-5746.jpg?_wi=2",
|
||||
imageAlt: "spring garden flowering plants landscape",
|
||||
},
|
||||
{
|
||||
id: "project-7",
|
||||
name: "Water Feature Installation",
|
||||
price: "Premium Enhancement",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg?_wi=3",
|
||||
imageAlt: "Water feature landscape installation",
|
||||
},
|
||||
{
|
||||
id: "project-8",
|
||||
name: "Pathway Landscape Design",
|
||||
price: "Hardscape Feature",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg?_wi=5",
|
||||
imageAlt: "Decorative stone pathway landscape",
|
||||
},
|
||||
{
|
||||
id: "project-9",
|
||||
name: "Comprehensive Property Renovation",
|
||||
price: "Complete Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013403.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013403.jpg?_wi=3",
|
||||
imageAlt: "Professional property landscape renovation",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Custom Cut Landscape LLC | Landscaping Chagrin Falls Ohio",
|
||||
description: "Professional landscape design and installation in Chagrin Falls, Ohio. Free estimates. Expert hardscaping, lawn care, and property enhancements.",
|
||||
keywords: "landscaping Chagrin Falls, landscape design Ohio, hardscape installation, lawn care, landscape contractor",
|
||||
metadataBase: new URL("https://customcutlandscape.com"),
|
||||
alternates: {
|
||||
canonical: "https://customcutlandscape.com"
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
},
|
||||
openGraph: {
|
||||
title: "Custom Cut Landscape LLC - Professional Landscaping",
|
||||
description: "Transform your outdoor space with professional landscape design and installation in Chagrin Falls, Ohio.",
|
||||
url: "https://customcutlandscape.com",
|
||||
siteName: "Custom Cut Landscape LLC",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://customcutlandscape.com/og-image.jpg",
|
||||
alt: "Custom Cut Landscape - Professional Landscaping"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Custom Cut Landscape LLC",
|
||||
description: "Professional landscaping services in Chagrin Falls, Ohio",
|
||||
images: ["https://customcutlandscape.com/twitter-image.jpg"]
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -102,7 +102,7 @@ export default function HomePage() {
|
||||
tag="Premium Landscaping Services"
|
||||
tagAnimation="slide-up"
|
||||
mediaAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/path-passing-through-grass_1252-1048.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/path-passing-through-grass_1252-1048.jpg?_wi=1"
|
||||
imageAlt="Custom Cut Landscape - Professional landscaping installation"
|
||||
imagePosition="right"
|
||||
testimonialRotationInterval={5000}
|
||||
@@ -123,11 +123,11 @@ export default function HomePage() {
|
||||
title: "Landscape Design",
|
||||
description: "Custom design solutions that blend aesthetics with functionality. Our experienced designers create outdoor spaces that enhance your property's value and beauty.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg?_wi=1",
|
||||
imageAlt: "Landscape design consultation",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg?_wi=2",
|
||||
imageAlt: "Professional landscape design",
|
||||
},
|
||||
},
|
||||
@@ -136,11 +136,11 @@ export default function HomePage() {
|
||||
title: "Lawn Installation",
|
||||
description: "Professional lawn installation using premium sod and grasses. We prepare the soil properly and install new lawns that establish quickly and look lush.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg?_wi=1",
|
||||
imageAlt: "Lawn installation service",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg?_wi=2",
|
||||
imageAlt: "Professional lawn installation",
|
||||
},
|
||||
},
|
||||
@@ -149,11 +149,11 @@ export default function HomePage() {
|
||||
title: "Hardscaping",
|
||||
description: "Durable hardscape features including patios, walkways, and retaining walls. We use quality materials and expert craftsmanship to create stunning outdoor structures.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg?_wi=1",
|
||||
imageAlt: "Hardscape patio installation",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg?_wi=2",
|
||||
imageAlt: "Professional hardscape design",
|
||||
},
|
||||
},
|
||||
@@ -162,11 +162,11 @@ export default function HomePage() {
|
||||
title: "Seasonal Maintenance",
|
||||
description: "Keep your landscape looking pristine year-round. Our maintenance services include mowing, trimming, mulching, and seasonal care for all your landscaping needs.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg?_wi=1",
|
||||
imageAlt: "Professional landscape maintenance",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg?_wi=2",
|
||||
imageAlt: "Lawn maintenance service",
|
||||
},
|
||||
},
|
||||
@@ -175,11 +175,11 @@ export default function HomePage() {
|
||||
title: "Property Enhancements",
|
||||
description: "Add special features to elevate your outdoor space. From outdoor lighting to water features, we install enhancements that make your property truly unique.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=1",
|
||||
imageAlt: "Outdoor landscape enhancement",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=2",
|
||||
imageAlt: "Landscape feature installation",
|
||||
},
|
||||
},
|
||||
@@ -253,42 +253,42 @@ export default function HomePage() {
|
||||
id: "project-1",
|
||||
name: "Luxury Backyard Transformation",
|
||||
price: "Premium Design",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg?_wi=1",
|
||||
imageAlt: "Luxury backyard landscape design",
|
||||
},
|
||||
{
|
||||
id: "project-2",
|
||||
name: "Residential Landscape Upgrade",
|
||||
price: "Full Installation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013403.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening_23-2148013403.jpg?_wi=1",
|
||||
imageAlt: "Residential landscape project",
|
||||
},
|
||||
{
|
||||
id: "project-3",
|
||||
name: "Stone Patio Installation",
|
||||
price: "Hardscape Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girlfriends-relaxing-sitting-armchairs_23-2147850522.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girlfriends-relaxing-sitting-armchairs_23-2147850522.jpg?_wi=1",
|
||||
imageAlt: "Stone patio hardscape",
|
||||
},
|
||||
{
|
||||
id: "project-4",
|
||||
name: "Professional Lawn Installation",
|
||||
price: "Lawn Service",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-stylish-smiling-woman-walking-exotic-street-near-hotel-sunny-hot-day-spending-her-vacation-los-angeles_273443-2713.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-length-portrait-stylish-smiling-woman-walking-exotic-street-near-hotel-sunny-hot-day-spending-her-vacation-los-angeles_273443-2713.jpg?_wi=1",
|
||||
imageAlt: "Professional lawn installation",
|
||||
},
|
||||
{
|
||||
id: "project-5",
|
||||
name: "Landscape Lighting Design",
|
||||
price: "Enhancement Feature",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calm-place-prepared-desk-waiting-food-visitors-evening-time_146671-14404.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/calm-place-prepared-desk-waiting-food-visitors-evening-time_146671-14404.jpg?_wi=1",
|
||||
imageAlt: "Outdoor landscape lighting",
|
||||
},
|
||||
{
|
||||
id: "project-6",
|
||||
name: "Seasonal Planting Design",
|
||||
price: "Seasonal Service",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bouquet-tree-pot_1339-5746.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bouquet-tree-pot_1339-5746.jpg?_wi=1",
|
||||
imageAlt: "Landscape planting design",
|
||||
},
|
||||
]}
|
||||
@@ -389,7 +389,7 @@ export default function HomePage() {
|
||||
description="Custom Cut Landscape is ready to transform your property with professional design and expert installation. Get started with a free estimate today."
|
||||
subdescription="Serving Chagrin Falls, Ohio and surrounding areas with premium landscaping services. Call or submit a quote request to get started."
|
||||
icon={CheckCircle}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-flowers-growing-garden_181624-24120.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-flowers-growing-garden_181624-24120.jpg?_wi=1"
|
||||
imageAlt="Landscape transformation"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
|
||||
@@ -55,11 +55,11 @@ export default function ServicesPage() {
|
||||
title: "Landscape Design",
|
||||
description: "Custom design solutions tailored to your vision and property. Our experienced designers create beautiful outdoor spaces that enhance your home's aesthetic appeal and increase property value.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg?_wi=3",
|
||||
imageAlt: "Landscape design consultation",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pavilion-enlightened-ancient-city-samut-prakan-province-thailand_335224-1024.jpg?_wi=4",
|
||||
imageAlt: "Professional landscape design",
|
||||
},
|
||||
},
|
||||
@@ -68,11 +68,11 @@ export default function ServicesPage() {
|
||||
title: "Lawn Installation",
|
||||
description: "Premium lawn installation using quality sod and grass varieties. We prepare your soil properly and install new lawns that establish quickly, creating lush green spaces that last.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg?_wi=3",
|
||||
imageAlt: "Lawn installation service",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-lush-green-grass-field_23-2151982447.jpg?_wi=4",
|
||||
imageAlt: "Professional lawn installation",
|
||||
},
|
||||
},
|
||||
@@ -81,11 +81,11 @@ export default function ServicesPage() {
|
||||
title: "Hardscaping",
|
||||
description: "Durable hardscape features including patios, walkways, retaining walls, and outdoor structures. Our expert craftsmanship creates functional and beautiful outdoor living spaces using premium materials.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg?_wi=3",
|
||||
imageAlt: "Hardscape patio installation",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-retaining-stone-wall-covered-with-moss_181624-10005.jpg?_wi=4",
|
||||
imageAlt: "Professional hardscape design",
|
||||
},
|
||||
},
|
||||
@@ -94,11 +94,11 @@ export default function ServicesPage() {
|
||||
title: "Seasonal Maintenance",
|
||||
description: "Keep your landscape pristine year-round with our comprehensive maintenance services. We handle mowing, trimming, mulching, seasonal care, and more to maintain your property's beauty.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg?_wi=3",
|
||||
imageAlt: "Professional landscape maintenance",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunet-handyman-protective-shield-standing-with-cordless-chain-saw-while-working-backyard_7502-10173.jpg?_wi=4",
|
||||
imageAlt: "Lawn maintenance service",
|
||||
},
|
||||
},
|
||||
@@ -107,11 +107,11 @@ export default function ServicesPage() {
|
||||
title: "Property Enhancements",
|
||||
description: "Elevate your outdoor space with special features and enhancements. From outdoor lighting and water features to custom garden elements, we add unique touches that make your property stand out.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=3",
|
||||
imageAlt: "Outdoor landscape enhancement",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-garden_23-2147986408.jpg?_wi=4",
|
||||
imageAlt: "Landscape feature installation",
|
||||
},
|
||||
},
|
||||
@@ -139,7 +139,7 @@ export default function ServicesPage() {
|
||||
description="We believe in delivering excellence on every project. Our team combines professional expertise with genuine care for your property, ensuring outstanding results that exceed expectations."
|
||||
subdescription="With 15+ years of experience serving Chagrin Falls and the surrounding areas, we've built our reputation on quality craftsmanship, reliable service, and customer satisfaction. When you choose Custom Cut Landscape, you're choosing a partner committed to transforming your outdoor space."
|
||||
icon={CheckCircle}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-flowers-growing-garden_181624-24120.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-flowers-growing-garden_181624-24120.jpg?_wi=2"
|
||||
imageAlt="Custom Cut Landscape services"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -156,7 +156,7 @@ export default function ServicesPage() {
|
||||
description="Contact Custom Cut Landscape LLC today to discuss your landscaping project. We offer free consultations and quotes for all services."
|
||||
subdescription="Call us at (440) 247-7566 or fill out our online form. Our team will contact you within 24 hours to schedule your consultation."
|
||||
icon={CheckCircle}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/path-passing-through-grass_1252-1048.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/path-passing-through-grass_1252-1048.jpg?_wi=2"
|
||||
imageAlt: "Get started with landscaping services"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user