diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7391906..c013061 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Westland Plumbing Co | Local Plumber 24/7 Emergency Service", description: "Licensed, insured plumber in Westland, MI. Emergency plumbing repairs, water heater service, drain cleaning. Fast response, honest pricing. Call (734) 555-0147.", keywords: "plumber Westland MI, emergency plumbing, water heater repair, drain cleaning, local plumber", metadataBase: new URL("https://westlandplumbing.local"), - alternates: { - canonical: "https://westlandplumbing.local"}, - openGraph: { - title: "Westland Plumbing Co | Trusted Local Plumbers", description: "24/7 emergency plumbing services in Westland, MI. Licensed, insured, 5-star rated. Fast response, fair pricing.", url: "https://westlandplumbing.local", siteName: "Westland Plumbing Co", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/muscular-tattoed-repairman-posing-autoservice_7502-4414.jpg", alt: "Westland Plumbing Service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Westland Plumbing Co - 24/7 Emergency Service", description: "Licensed plumbers in Westland, MI. Fast emergency response, water heater repair, drain cleaning.", images: ["http://img.b2bpic.net/free-photo/muscular-tattoed-repairman-posing-autoservice_7502-4414.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Westland Plumbing - Local Plumbers in Westland, MI", description: "Fast, reliable plumbing repairs & installations. Licensed, insured, 24/7 emergency service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -