import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"], }); export const metadata: Metadata = { title: "Liberty Landscaping | Southern Gardens & Authentic Landscape Design", description: "Handcrafted Southern landscapes rooted in tradition. Liberty Landscaping transforms outdoor spaces into cherished gathering places. Three generations of expertise serving the Southeast.", keywords: "landscaping, Southern gardens, landscape design, garden maintenance, hardscape, heritage plants, outdoor design, Southeast landscaping", metadataBase: new URL("https://libertyland.com"), alternates: { canonical: "https://libertyland.com" }, openGraph: { title: "Liberty Landscaping | Southern Gardens & Timeless Beauty", description: "Handcrafted landscapes rooted in tradition. Transform your outdoor space into a cherished gathering place.", url: "https://libertyland.com", siteName: "Liberty Landscaping", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP6m7l7hwi4GIZuXGy8tnhucL3/uploaded-1772685247622-xx99ccq6.jpg", alt: "Beautiful Southern garden landscape" } ] }, twitter: { card: "summary_large_image", title: "Liberty Landscaping | Southern Gardens", description: "Handcrafted landscapes with authentic Southern charm and heritage craftsmanship.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP6m7l7hwi4GIZuXGy8tnhucL3/uploaded-1772685247622-xx99ccq6.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}