diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..8888a05 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,53 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Libre_Baskerville, Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Prolawn Landscape Management | Landscaping Services NJ", + description: "Professional landscaping services in New Jersey. 10+ years of experience in landscape design, hardscaping, lawn care, and snow removal. Call (732) 433-2351 for free estimate.", + keywords: "landscaping, landscape design, lawn care, hardscape, patio installation, snow removal, New Jersey", + metadataBase: new URL("https://prolawnlandscape.com"), + alternates: { + canonical: "https://prolawnlandscape.com" + }, + openGraph: { + title: "Prolawn Landscape Management | Landscaping Services", + description: "Transform your outdoor space with 10+ years of professional landscaping expertise.", + siteName: "Prolawn Landscape Management", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/suburban-housing_53876-14307.jpg", + alt: "Professional landscaping services" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Prolawn Landscape Management", + description: "Professional landscaping services with 10+ years of expertise", + images: ["http://img.b2bpic.net/free-photo/suburban-housing_53876-14307.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +56,9 @@ export default function RootLayout({ return ( - + {children}