From 30a6b7201f9718bb26a9eede804e14b1c54122e2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 03:05:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 40 ++++++++-------------------------------- 1 file changed, 8 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 476b8bc..6a348e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Raleway } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const raleway = Raleway({ + variable: "--font-raleway", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Trusted Local Service Experts | Emergency 24/7 Available", description: "Licensed, insured local service professionals available 24/7. Fast response, fair pricing, 100% satisfaction guarantee. Call now for same-day service.", keywords: "local service, emergency service, plumbing, electrical, HVAC, professional service, licensed contractor", openGraph: { - title: "Trusted Local Service Experts", description: "Professional home services available 24/7. Fast, reliable, and affordable.", siteName: "Local Pro Services", type: "website"}, - twitter: { - card: "summary", title: "Trusted Local Service Experts | 24/7 Available", description: "Licensed professionals. Emergency service. Call now."}, -}; + title: "Local Pro Services - Trusted Home Service Experts", description: "Fast, reliable home service from licensed professionals. 24/7 emergency service available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}