From 2fd0a41c170896d20b3fecaa0f5de8ff5990073c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:08:37 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e60c812..83203af 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Local Services | ProServe - Fast & Reliable", description: "Trusted local service provider with 15+ years of experience. Licensed, insured, same-day response. Plumbing, electrical, HVAC, and more. Get your free quote today.", keywords: "local services, plumbing, electrical, HVAC, home repair, licensed contractor, trusted service provider", metadataBase: new URL("https://www.proserve.local"), - alternates: { - canonical: "https://www.proserve.local" - }, - openGraph: { - title: "ProServe - Your Local Service Expert", description: "Trusted professional services with transparent pricing and 24/7 availability", url: "https://www.proserve.local", siteName: "ProServe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/business-team-office_1098-746.jpg", alt: "ProServe professional service team" - } - ] - }, - twitter: { - card: "summary_large_image", title: "ProServe - Trusted Local Services", description: "Fast, reliable, and affordable solutions for your home", images: ["http://img.b2bpic.net/free-photo/business-team-office_1098-746.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "ProServe - Professional Local Services", description: "Fast, reliable, and affordable home services. Licensed & insured with same-day response times."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}