diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 01e80e9..84edca1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Tx-Star Plumbing | Houston Plumbers (832) 219-6222", description: "Trusted Houston plumbing service for 23 years. Fast diagnosis, fair pricing. Licensed & insured. Emergency service available. Call now for drain cleaning, water heater repair, leak detection.", keywords: "Houston plumber, plumber near me, emergency plumber, drain cleaning, water heater repair, leak detection, Sugar Land plumber", metadataBase: new URL("https://txstarplumbing.com"), - alternates: { - canonical: "https://txstarplumbing.com"}, - openGraph: { - title: "Tx-Star Plumbing | Trusted Houston Plumbers", description: "5th generation family-owned plumbing company. 23 years of reliable service. Licensed, insured, fair pricing. Call (832) 219-6222 for fast help.", url: "https://txstarplumbing.com", siteName: "Tx-Star Plumbing", type: "website", images: [ - { - url: "https://txstarplumbing.com/og-image.jpg", alt: "Tx-Star Plumbing - Trusted Houston Plumbers"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Tx-Star Plumbing | Houston Plumbers", description: "Need a reliable plumber in Houston? Call Tx-Star Plumbing for fast, honest service. (832) 219-6222", images: ["https://txstarplumbing.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Tx-Star Plumbing | Houston Plumbers", description: "Trusted Houston plumbers with 23+ years of experience. Fast, reliable 24/7 emergency plumbing services. Licensed & insured. Call (832) 219-6222."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -