diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..00249d7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1413 @@ +import type { Metadata } from "next"; +import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; +import { Archivo } 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 archivo = Archivo({ + variable: "--font-archivo", subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Gaspar's Landscaping LLC | Professional Lawn Care & Services", description: "Reliable lawn maintenance, tree planting, and landscaping services. Free estimates. Trusted local professionals for residential property care.", keywords: "landscaping, lawn care, lawn maintenance, tree planting, yard cleanup, landscape design, professional lawn service", openGraph: { + title: "Gaspar's Landscaping LLC", description: "Professional landscaping and lawn care services. Beautiful lawns. Reliable service. Trusted local professionals.", type: "website", siteName: "Gaspar's Landscaping LLC"}, + twitter: { + card: "summary_large_image", title: "Gaspar's Landscaping LLC", description: "Professional lawn care and landscaping services in your area"}, +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + + + {children} + +