From c989931b95bdb8c8f215af41f6043ade0810008f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:56:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8e91106..2670b3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Coastal Plumbing of Brickell Inc | Miami Plumber", description: "Fast, reliable plumbing in Brickell & Miami. Leak repairs, drain cleaning, water heaters, and 24/7 emergency service. Licensed & insured. Call (786) 499-0799.", keywords: "plumber miami, brickell plumbing, emergency plumbing, drain cleaning, leak repair, water heater", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Coastal Plumbing of Brickell Inc | Miami Plumber", description: "Professional plumbing services in Brickell, Miami. 24/7 emergency response. Call (786) 499-0799.", siteName: "Coastal Plumbing of Brickell Inc", type: "website"}, -}; + title: "Coastal Plumbing | Fast, Reliable Plumbing in Brickell & Miami", description: "Professional plumbing services in Brickell, Miami Beach, and Greater Miami. Same-day availability, licensed & insured. Emergency plumbing 24/7."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}