Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 02:33:43 +00:00
2 changed files with 11 additions and 52 deletions

View File

@@ -1,60 +1,20 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Lawn Tech | Professional Lawn Care in South Jordan, UT",
description: "Professional lawn mowing, fertilization, weed control, and pest control services in South Jordan, Utah. Free estimates for South Jordan, Sandy, Riverton, and surrounding areas.",
keywords: "lawn care south jordan, lawn mowing utah, lawn fertilization, weed control south jordan, lawn service near me",
metadataBase: new URL("https://www.lawntech-southjordan.com"),
alternates: {
canonical: "https://www.lawntech-southjordan.com",
},
openGraph: {
title: "Lawn Tech - Professional Lawn Care South Jordan, UT",
description: "Expert lawn mowing, fertilization, and lawn maintenance. Serving South Jordan, Sandy, Riverton. Free estimates available.",
url: "https://www.lawntech-southjordan.com",
siteName: "Lawn Tech",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Lawn Tech - Lawn Care South Jordan, UT",
description: "Professional lawn care services. Call (801) 253-2277 for a free estimate.",
},
robots: {
index: true,
follow: true,
},
};
title: "Lawn Tech - Professional Lawn Care in South Jordan, UT", description: "Professional lawn mowing, fertilization, weed control, and maintenance services in South Jordan, Utah."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.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

@@ -9,7 +9,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, CheckCircle, Leaf, Star, TrendingUp, DollarSign } from "lucide-react";
import { Sparkles, CheckCircle, Leaf, Star, TrendingUp, DollarSign, Shield } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -41,8 +41,8 @@ export default function HomePage() {
<HeroBillboardRotatedCarousel
title="Professional Lawn Care in South Jordan, UT"
description="Reliable mowing, fertilization, weed control, and lawn maintenance to keep your yard looking its best. Serving South Jordan, Sandy, Riverton, and surrounding areas."
tag="Local Service"
tagIcon={Sparkles}
tag="Licensed & Insured"
tagIcon={Shield}
tagAnimation="slide-up"
buttons={[
{ text: "Call Now: (801) 253-2277", href: "tel:+18012532277" },
@@ -235,4 +235,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}