diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ae92aa7..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +0,0 @@ -import type { Metadata } from "next"; -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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Plumber in Katy TX | Mr. Potty Plumbing", description: "Professional plumbing company in Katy, TX. 5-star rated, women-owned, licensed & insured. Tankless water heaters, repairs, installations. Same-day service available.", keywords: "plumber Katy TX, plumbing company Katy, water heater repair Katy, tankless water heater Katy, emergency plumber", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Mr. Potty Plumbing - Trusted Local Plumber in Katy, TX", description: "Professional plumbing services in Katy, TX. 5.0 star rating, women-owned business, licensed & insured.", type: "website", siteName: "Mr. Potty Plumbing", images: [ - { - url: "http://img.b2bpic.net/free-photo/basin-black-faucet-green-bathroom-with-lighting-cozy-spa-nook_169016-69326.jpg", alt: "Mr. Potty Plumbing - Professional Service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mr. Potty Plumbing - Katy, TX", description: "Trusted plumbing experts. 5-star rated, women-owned. Call (713) 352-1919", images: ["http://img.b2bpic.net/free-photo/basin-black-faucet-green-bathroom-with-lighting-cozy-spa-nook_169016-69326.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -