diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0ee0dfe..6818c36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "24/7 Emergency Plumbing in NYC | Fast Response", description: "Licensed NYC plumbers available 24/7 for emergency drain, leak, and sewer repairs. Fast response, upfront pricing, no surprises. Call now for immediate help.", keywords: "emergency plumbing NYC, 24/7 plumber, drain cleaning, leak repair, licensed plumber NYC", metadataBase: new URL("https://empirenyc plumbers.com"), - alternates: { - canonical: "https://empirenyc plumbers.com"}, - openGraph: { - title: "24/7 Emergency Plumbing in NYC | Empire NYC Plumbers", description: "Fast, reliable emergency plumbing service in Manhattan and all NYC boroughs. Licensed, insured, upfront pricing.", url: "https://empirenyc plumbers.com", siteName: "Empire NYC Plumbers", type: "website"}, - twitter: { - card: "summary_large_image", title: "24/7 Emergency Plumbing in NYC", description: "Licensed NYC plumbers ready to help. Fast response, upfront pricing, no surprises."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Empire NYC Plumbers | 24/7 Emergency Plumbing Services", description: "Licensed, insured emergency plumbing in NYC. Fast response, upfront pricing, no hidden fees. Available 24/7 for drain cleaning, leaks, water heaters & more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +