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: "Tree Service Gibsonia PA | Ed's Professional Tree Removal", description: "Professional tree removal, trimming & stump grinding in Gibsonia, PA. Free estimates, 24/7 emergency service. Trusted local tree service.", keywords: "tree service Gibsonia PA, tree removal, tree trimming, stump grinding, emergency tree service", metadataBase: new URL("https://edstreeservice.com"), alternates: { canonical: "https://edstreeservice.com"}, openGraph: { title: "Professional Tree Removal in Gibsonia PA", description: "Safe, affordable tree services with meticulous cleanup. Free estimates and fast scheduling.", url: "https://edstreeservice.com", siteName: "Eds Tree Service", type: "website"}, twitter: { card: "summary_large_image", title: "Tree Service in Gibsonia PA", description: "Professional tree removal and care. Call (412) 999-0058 for free estimate."}, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}