diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7e837b5..d38a377 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Lake Mahopac Landscaping & Lawncare | Professional Lawn Care Services", description: "Professional landscaping & lawn care services in Mahopac, NY. Trusted by 50+ customers. Free quote, fast service, fair pricing. Call (845) 628-5169 today.", keywords: "landscaping Mahopac, lawn care Mahopac, landscape design NY, lawn maintenance, Putnam County landscaping", openGraph: { - title: "Lake Mahopac Landscaping & Lawncare", description: "Professional landscaping and lawn care services in Mahopac, NY. Get your free quote today.", siteName: "Lake Mahopac Landscaping & Lawncare", type: "website"}, - twitter: { - card: "summary_large_image", title: "Lake Mahopac Landscaping & Lawncare | Mahopac, NY", description: "Professional lawn care and landscaping services. Fast scheduling, fair pricing, 5.0★ rated."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Lake Mahopac Landscaping", description: "Professional lawn care and landscaping services in Mahopac, NY"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}