diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 404e572..4d68535 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Emergency Plumber in Rialto | 24/7 Service | Tony's Rooter", - description: "Fast, reliable plumbing service in Rialto. 24-hour emergency plumber. Drain cleaning, rooter, water heater repair. Free estimates. Call (909) 875-8003.", - keywords: "plumber Rialto, emergency plumber, drain cleaning, rooter service, water heater repair, 24 hour plumbing", - metadataBase: new URL("https://tonysrooterservice.com"), - alternates: { - canonical: "https://tonysrooterservice.com", - }, - openGraph: { - title: "Tony's Rooter & Plumbing Service | 24-Hour Emergency Plumber Rialto", - description: "Trusted local plumbing experts in Rialto serving San Bernardino County. Fast response, honest pricing, 24/7 availability.", - url: "https://tonysrooterservice.com", - siteName: "Tony's Rooter & Plumbing Service", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Emergency Plumber in Rialto | Tony's Rooter", - description: "24/7 plumbing service in Rialto. Fast response, honest pricing, trusted by hundreds.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Tony's Rooter - 24-Hour Emergency Plumbing Service in Rialto", description: "Expert plumbing and rooter service in Rialto, CA. 24-hour emergency response, honest pricing, trusted local plumber. Licensed & insured."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -