From a37658bc998b3ae43a7c8da1d424823de76c2be6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:47:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 71 +++++----------------------------------------- 1 file changed, 7 insertions(+), 64 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c3d19e7..c1a15ce 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Tree Service Nashville TN | Expert Removal & Trimming | Sky Tree Services", - description: "Professional tree removal, trimming, and emergency storm cleanup in Nashville, TN. 4.9★ rated. 24/7 available. Free estimates. Call 615-568-9651.", - keywords: "Nashville tree service, tree removal Nashville, emergency tree removal, tree trimming Nashville, stump grinding, storm damage cleanup", - metadataBase: new URL("https://skytreeservices.com"), - alternates: { - canonical: "https://skytreeservices.com", - }, - openGraph: { - title: "Expert Tree Services Nashville TN - 24/7 Emergency Available", - description: "Professional tree removal, trimming, and storm cleanup. 4.9★ rated local business. Free estimates. Available 24/7.", - url: "https://skytreeservices.com", - siteName: "Sky Tree Services", - images: [ - { - url: "http://img.b2bpic.net/free-photo/soft-focus-log-sawing-german-wedding-tradition-prove-strength-teamwork-as-couple_181624-58771.jpg", - alt: "professional tree removal crew large tree", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Expert Tree Services in Nashville TN", - description: "Professional tree removal & emergency service. 24/7 available. Call for free estimate.", - images: [ - "http://img.b2bpic.net/free-photo/soft-focus-log-sawing-german-wedding-tradition-prove-strength-teamwork-as-couple_181624-58771.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sky Tree Services - Nashville Tree Removal & Trimming", description: "Expert tree removal, trimming, and emergency services in Nashville. Available 24/7 for storm damage and tree emergencies."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}