From 1d686510083e40e3dff60ff4c7ba61bc73ebe8e4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:18:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ada4ab2..c918b3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Tree Service Nashville | Sky Tree Services", description: "Expert tree removal, trimming, and stump grinding in Nashville. 4.9★ rated, licensed & insured, 24/7 emergency service. Free estimates available.", keywords: "tree removal Nashville, tree service Nashville, tree trimming, stump grinding, emergency tree removal, arborist Nashville", metadataBase: new URL("https://skytreeservices.com"), - alternates: { - canonical: "https://skytreeservices.com" - }, - openGraph: { - title: "Sky Tree Services | Nashville Tree Removal & Trimming", description: "Professional tree removal, trimming, and stump grinding in Nashville. 4.9★ rated local service. Call 615-568-9651 for 24/7 emergency response.", url: "https://skytreeservices.com", siteName: "Sky Tree Services", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-trimming-bough-brush-guy-works-backyard_1157-41449.jpg", alt: "professional tree service crew working safely" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Sky Tree Services | Nashville Tree Removal", description: "Expert tree removal and trimming in Nashville. 4.9★ rated, licensed & insured. Call 615-568-9651 for free estimate.", images: ["http://img.b2bpic.net/free-photo/man-trimming-bough-brush-guy-works-backyard_1157-41449.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Sky Tree Services - Professional Tree Removal Nashville", description: "Fast, affordable, and reliable tree service available 24/7. Professional tree removal, trimming, and stump grinding in Nashville, TN."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}