diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d3c926f..55976ec 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +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: "Tree Removal & Trimming Fort Pierce FL | Expert Arborists", description: "Professional tree removal, trimming, and stump grinding in Fort Pierce, FL. Licensed, insured, 4.4★ rated. Free estimates. 24/7 emergency service.", keywords: "tree removal Fort Pierce, tree trimming FL, stump grinding, emergency tree service, arborist services", metadataBase: new URL("https://treetrimersusa.com"), - alternates: { - canonical: "https://treetrimersusa.com" - }, - openGraph: { - title: "Professional Tree Services Fort Pierce, FL", description: "Safe, affordable tree removal and trimming for South Florida homeowners.", url: "https://treetrimersusa.com", siteName: "Tree Trimmers USA", type: "website" - }, - robots: { - index: true, - follow: true - } -}; + title: "Tree Trimmers USA - Professional Tree Removal & Trimming", description: "Expert tree removal, trimming, and stump grinding services in Fort Pierce, Vero Beach, Port St. Lucie, and St. Lucie County, FL. Licensed, insured, and available 24/7."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -