7 Commits

Author SHA1 Message Date
8dfe6d4eb3 Merge version_3 into main
Merge version_3 into main
2026-03-04 10:25:36 +00:00
dfa986b9e9 Update src/app/page.tsx 2026-03-04 10:25:32 +00:00
759588ec0c Update src/app/layout.tsx 2026-03-04 10:25:32 +00:00
448b6bd201 Merge version_2 into main
Merge version_2 into main
2026-03-04 10:24:03 +00:00
402568dc50 Update src/app/page.tsx 2026-03-04 10:23:59 +00:00
6585adf50b Update src/app/layout.tsx 2026-03-04 10:23:59 +00:00
1807b8ad80 Merge version_1 into main
Merge version_1 into main
2026-03-04 10:21:08 +00:00
2 changed files with 18 additions and 65 deletions

View File

@@ -1,60 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Richards Your Outdoor Connection - Tree & Landscaping Services Cleveland", description: "Professional tree removal, trimming, landscaping, and excavation services in Cleveland, Ohio. Family-owned since 1985. Request your free quote today.", keywords: "tree removal Cleveland, tree trimming, landscaping services, excavation Cleveland, outdoor services", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Richards Your Outdoor Connection - Professional Outdoor Services", description: "Trusted tree and landscaping experts serving Cleveland since 1985", type: "website", siteName: "Richards Your Outdoor Connection", images: [
{
url: "http://img.b2bpic.net/free-photo/positive-male-landscaper-cutting-top-overgrown-thujas-with-motorized-hedge-trimmer-park-side_7502-10163.jpg", alt: "Professional landscaping services"},
],
},
twitter: {
card: "summary_large_image", title: "Richards Your Outdoor Connection", description: "Professional tree removal and landscaping in Cleveland", images: [
"http://img.b2bpic.net/free-photo/positive-male-landscaper-cutting-top-overgrown-thujas-with-motorized-hedge-trimmer-park-side_7502-10163.jpg"],
},
};
title: "Richards Your Outdoor Connection", description: "Professional tree removal, trimming, landscaping, and excavation services in Cleveland."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -8,6 +8,7 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -59,15 +60,13 @@ export default function LandingPage() {
<FeatureCardMedia
title="Professional Outdoor Services"
description="We offer comprehensive landscaping solutions to enhance and maintain your property year-round."
tag="Expert Solutions"
tagIcon={Zap}
features={[
{
id: "1", title: "Tree Removal", description: "Safe and efficient removal of dead, diseased, or unwanted trees from your property", tag: "Expert Service", imageSrc: "http://img.b2bpic.net/free-photo/closeup-lumberjack-with-chainsaw-forest_181624-59761.jpg", imageAlt: "tree removal arborist cutting equipment professional"},
{
id: "2", title: "Tree Trimming", description: "Professional trimming to promote health, safety, and aesthetic appeal of your trees", tag: "Maintenance", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-working-field_329181-12481.jpg", imageAlt: "tree trimming pruning maintenance arborist healthy"},
{
id: "3", title: "Landscaping", description: "Complete landscape design and installation to transform your outdoor environment", tag: "Design", imageSrc: "http://img.b2bpic.net/free-photo/long-shot-young-woman-taking-care-plants_23-2148509881.jpg", imageAlt: "landscaping garden design outdoor space plants backyard"},
{
id: "4", title: "Excavation Services", description: "Reliable excavation for grading, land clearing, and site preparation projects", tag: "Heavy Equipment", imageSrc: "http://img.b2bpic.net/free-photo/excavator-digging-ground-day-light_23-2149194772.jpg", imageAlt: "excavation heavy equipment bulldozer construction grading"},
{ id: "1", title: "Tree Removal", description: "Safe and efficient removal of dead, diseased, or unwanted trees from your property", tag: "Expert Service", imageSrc: "http://img.b2bpic.net/free-photo/closeup-lumberjack-with-chainsaw-forest_181624-59761.jpg", imageAlt: "tree removal arborist cutting equipment professional"},
{ id: "2", title: "Tree Trimming", description: "Professional trimming to promote health, safety, and aesthetic appeal of your trees", tag: "Maintenance", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-working-field_329181-12481.jpg", imageAlt: "tree trimming pruning maintenance arborist healthy"},
{ id: "3", title: "Landscaping", description: "Complete landscape design and installation to transform your outdoor environment", tag: "Design", imageSrc: "http://img.b2bpic.net/free-photo/long-shot-young-woman-taking-care-plants_23-2148509881.jpg", imageAlt: "landscaping garden design outdoor space plants backyard"},
{ id: "4", title: "Excavation Services", description: "Reliable excavation for grading, land clearing, and site preparation projects", tag: "Heavy Equipment", imageSrc: "http://img.b2bpic.net/free-photo/excavator-digging-ground-day-light_23-2149194772.jpg", imageAlt: "excavation heavy equipment bulldozer construction grading"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -79,8 +78,7 @@ export default function LandingPage() {
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Family-Owned Since" },
{
type: "image", src: "http://img.b2bpic.net/free-vector/tree-shape-logo-template_1156-717.jpg", alt: "Richards Your Outdoor Connection logo"},
{ type: "image", src: "http://img.b2bpic.net/free-vector/tree-shape-logo-template_1156-717.jpg", alt: "Richards Your Outdoor Connection logo"},
{ type: "text", content: "1985" },
]}
useInvertedBackground={true}
@@ -92,14 +90,10 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
testimonials={[
{
id: "1", name: "Michael Thompson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "professional portrait business headshot male person"},
{
id: "2", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "professional portrait business headshot female person"},
{
id: "3", name: "Robert Chen", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-smiling_1098-63.jpg", imageAlt: "professional portrait business headshot male asian"},
{
id: "4", name: "Jennifer Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg", imageAlt: "professional portrait business headshot female diverse"},
{ id: "1", name: "Michael Thompson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "professional portrait business headshot male person"},
{ id: "2", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "professional portrait business headshot female person"},
{ id: "3", name: "Robert Chen", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-smiling_1098-63.jpg", imageAlt: "professional portrait business headshot male asian"},
{ id: "4", name: "Jennifer Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg", imageAlt: "professional portrait business headshot female diverse"},
]}
cardTitle="Over 1,000 satisfied customers trust us to care for their properties with professionalism and expertise"
cardTag="See What Our Customers Say"