diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 40b9408..4417182 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 80c4192..882720c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {
);
-}
\ No newline at end of file
+}