From 180ea5a61f2260b67377ee4eb5b7c9802acc74ba Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 21:20:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0ec2b26..2ff78af 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Sky Tree Service LLC | Professional Tree Removal in North Doha", description: "24/7 professional tree removal, trimming, and emergency services in North Doha. 4.9★ rated. Fast response, fully insured, women-owned business.", keywords: "tree removal Doha, tree trimming North Doha, emergency tree service Qatar, professional arborist, stump grinding, palm tree maintenance", openGraph: { - title: "Sky Tree Service LLC | Professional Tree Removal in North Doha", description: "24/7 professional tree removal and maintenance services in Doha. Trusted by 10,000+ customers with 4.9-star rating.", siteName: "Sky Tree Service LLC", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Sky Tree Service LLC | Professional Tree Care in Doha", description: "Emergency tree removal, trimming, and stump grinding. Available 24/7 in North Doha." - }, - robots: { - index: true, - follow: true - } -}; + title: "Sky Tree Service - Professional Tree Removal in Doha", description: "24/7 professional tree services in Doha. Tree removal, trimming, emergency service, and stump grinding. Trusted by thousands with 4.9-star rating."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +