From 7395974be817b759981fc234df4fc7b7cdb106a8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 00:37:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++-------------------------------------- 1 file changed, 6 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1cd6302..57bbef2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Appliance Repair Monroe County, Florida Keys | Same-Day Service", description: "Professional appliance repair across Key Largo, Islamorada, Marathon & Key West. Same-day service, honest pricing, 5-star rated. Call (305) 849-3979.", keywords: "appliance repair Florida Keys, refrigerator repair Key Largo, washer repair Monroe County, dishwasher repair Islamorada, appliance service Key West", metadataBase: new URL("https://a1stchoiceappliance.com"), - alternates: { - canonical: "https://a1stchoiceappliance.com"}, - openGraph: { - title: "Fast Appliance Repair - Florida Keys & Monroe County", description: "Same-day professional appliance repair service. Local trusted technician. Refrigerators, washers, dishwashers, ovens & more.", url: "https://a1stchoiceappliance.com", siteName: "A 1st Choice Appliance Service", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-happy-repairman-holding-washer-white-space_140725-106494.jpg", alt: "professional appliance repair technician portrait"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fast Appliance Repair - Florida Keys", description: "Professional appliance repair across Monroe County. Same-day service available.", images: ["http://img.b2bpic.net/free-photo/front-view-happy-repairman-holding-washer-white-space_140725-106494.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "A 1st Choice Appliance Service", description: "Fast & reliable appliance repair in the Florida Keys. Same-day service available across Monroe County."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}