From bc62715ae665ab4857d052f8af99745806a9ce47 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:40:25 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c31f7a6..c71e1d1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,18 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); export const metadata: Metadata = { - title: "All Dade Plumbing Inc | Miami Plumbing Services - (305) 273-8788", description: "All Dade Plumbing Inc provides professional plumbing services in Miami-Dade County. 4.5-star rated with 87 reviews. Emergency repairs, leak detection, drain cleaning, water heater service. Call (305) 273-8788 for same-day service.", keywords: "Miami plumber, plumbing company Miami, emergency plumber Miami, licensed plumber Miami-Dade, cast iron pipe replacement Miami, 24/7 plumbing service, All Dade Plumbing", openGraph: { - title: "All Dade Plumbing Inc | Miami's Trusted Plumbing Experts", description: "Professional plumbing services in Miami-Dade County. 4.5 stars (87 reviews). Fast, reliable, licensed & insured. Call (305) 273-8788.", type: "website", siteName: "All Dade Plumbing Inc", images: [ - { - url: "http://img.b2bpic.net/free-photo/wrench-flexible-connector-dark-table_23-2147772298.jpg", alt: "All Dade Plumbing Professional Service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "All Dade Plumbing Inc - Miami Plumbing Experts", description: "Professional plumbing services in Miami-Dade. 4.5★ rated. Call (305) 273-8788 for emergency service.", images: ["http://img.b2bpic.net/free-photo/wrench-flexible-connector-dark-table_23-2147772298.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "All Dade Plumbing - Miami's Trusted Plumbing Experts", description: "Fast. Professional. Reliable. Serving Miami-Dade with 5-Star Service. Licensed & Insured | 24/7 Emergency Service"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}