diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b917f8..e40d861 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Tag } from "@/components/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "ProFlow Plumbing | Professional Plumbing Services", description: "Professional plumbing services available 24/7. Emergency repairs, drain cleaning, water heater services, and more. Licensed, insured, and trusted by thousands.", keywords: "plumbing services, emergency plumbing, drain cleaning, water heater repair, pipe installation, plumber near me", metadataBase: new URL("https://proflowplumbing.com"), - alternates: { - canonical: "https://proflowplumbing.com" - }, - openGraph: { - title: "ProFlow Plumbing | Professional Plumbing Services", description: "Expert plumbing solutions for residential and commercial properties. 24/7 emergency service available.", url: "https://proflowplumbing.com", siteName: "ProFlow Plumbing", type: "website", images: [{ - url: "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg", alt: "professional plumber fixing pipe wrench" - }] - }, - twitter: { - card: "summary_large_image", title: "ProFlow Plumbing | Professional Plumbing Services", description: "Expert plumbing solutions available 24/7. Emergency repairs and more.", images: ["http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "ProFlow Plumbing - Professional Plumbing Services", description: "Expert plumbing solutions for residential and commercial properties. Emergency repairs, installations, and maintenance services available 24/7."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - - + +