diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 62e0069..9858924 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,22 @@
-import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Nunito } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import type { Metadata } from 'next';
+import { Inter } from 'next/font/google';
+import './globals.css';
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const nunito = Nunito({
- variable: "--font-nunito", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
- title: "Tree Service Spring Hill FL | Professional Tree Removal & Trimming", description: "USA Tree Service provides professional tree removal, trimming, and stump grinding in Spring Hill, FL. Licensed, insured, 24/7 emergency response. Get a free estimate today.", keywords: "tree service Spring Hill FL, tree removal, tree trimming, emergency tree removal, stump grinding, professional arborist, Hernando County", metadataBase: new URL("https://usatreeservice.com"),
- alternates: {
- canonical: "https://usatreeservice.com"},
- openGraph: {
- title: "Professional Tree Service in Spring Hill, FL", description: "Safe, reliable tree removal and trimming. Licensed professionals. 15+ years experience. 4.0★ rating. Free estimates.", url: "https://usatreeservice.com", siteName: "USA Tree Service", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/smiling-elderly-man-working-with-heavy-leaf-blower-leaves-glow-pleasant-sunlight-low-angle-view_7502-10281.jpg", alt: "professional tree removal service crew at work"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Professional Tree Service Spring Hill FL", description: "Tree removal, trimming, stump grinding. Licensed & insured. 24/7 emergency response.", images: ["http://img.b2bpic.net/free-photo/smiling-elderly-man-working-with-heavy-leaf-blower-leaves-glow-pleasant-sunlight-low-angle-view_7502-10281.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
+ title: 'USA Tree Service - Professional Tree Removal in Spring Hill, FL',
+ description: 'Licensed, insured tree removal, trimming, and stump grinding in Spring Hill, FL. 24/7 emergency response. 15+ years experience. Free estimates.',
};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-