diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8a4e38a..8e92124 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ 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"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Osceola Finest Lawn Care | Professional Landscaping Services", - description: "Professional lawn care and landscaping services in Osceola County, FL. 5.0 stars, free quotes. Serving Kissimmee, St. Cloud, and surrounding areas. Call (407) 577-4094.", - keywords: "lawn care Osceola, landscaping services Kissimmee, lawn maintenance St Cloud, landscape design Florida, local lawn care services", - metadataBase: new URL("https://osceolafinesttlawncare.com"), - alternates: { - canonical: "https://osceolafinesttlawncare.com", - }, - openGraph: { - title: "Osceola Finest Lawn Care | Professional Landscaping", - description: "Transform your yard with professional lawn care and landscaping. 5.0 stars, locally owned, free quotes available.", - url: "https://osceolafinesttlawncare.com", - siteName: "Osceola Finest Lawn Care", - type: "website", - images: [ - { - url: "https://osceolafinesttlawncare.com/og-image.jpg", - alt: "Beautiful lawn transformation by Osceola Finest", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Osceola Finest Lawn Care", - description: "Professional lawn care and landscaping in Osceola County. Free estimates available.", - images: ["https://osceolafinesttlawncare.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Osceola Finest - Professional Lawn Care & Landscaping", description: "Professional lawn care and landscaping services in Osceola County. Reliable lawn maintenance, landscape design, and yard cleanup."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -