From 95799b7eeeaf75f1570fac1d302dfa8d69cca8e8 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 07:16:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1409 +------------------------------------------- 1 file changed, 6 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dbfa506..9e1f92b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Alan's Tree Services | Professional Arboricultural Care", description: "Expert tree trimming, removal, and emergency services. 25+ years of certified arboricultural expertise. Free quotes available.", keywords: "tree removal, tree trimming, arborist, stump grinding, emergency tree service, professional tree care", openGraph: { - title: "Alan's Tree Services | Professional Tree Care", description: "Certified arboricultural expertise for residential and commercial properties. Safe, efficient tree care since 1995.", siteName: "Alan's Tree Services", type: "website"}, - twitter: { - card: "summary_large_image", title: "Alan's Tree Services", description: "Professional tree care and emergency services by certified arborists"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Alan's Tree Services", description: "Professional arboricultural expertise since 1995"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -