diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 97d65cf..c61d286 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "24/7 Emergency Plumbing & Heating - Nassau County | Mako Plumbing", - description: "Licensed & insured emergency plumbing service for Nassau County & Queens. Same-day service, upfront pricing, professional technicians available 24/7.", - keywords: "emergency plumbing Nassau County, plumber near me, 24/7 plumbing service, heating repair, licensed plumber", - metadataBase: new URL("https://makoplumbing.com"), - alternates: { - canonical: "https://makoplumbing.com", - }, - openGraph: { - title: "Mako Plumbing & Heating - Emergency Plumbing Service", - description: "24/7 emergency plumbing and heating service for Nassau County and Queens. Licensed, insured, and trusted by thousands.", - siteName: "Mako Plumbing", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721551.jpg", - alt: "Professional plumbing service team", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "24/7 Emergency Plumbing - Mako Plumbing", - description: "Licensed emergency plumbing and heating service for Nassau County & Queens.", - images: ["http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721551.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mako Plumbing & Heating | Emergency Plumbing Services on Long Island", description: "24/7 emergency plumbing and heating services on Long Island. Licensed, fully insured, fast response, upfront pricing. Serving Nassau County & Queens since 2013."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -