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}