diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3075373..f426d13 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1445 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper"; +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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "PB&J Plumbing | 27 Years Trusted Service Spring Hill & Palm Harbor", - description: "5-star rated plumbing services in Spring Hill & Palm Harbor, FL. Emergency repairs, remodels, repipe systems. Licensed, insured, locally owned. Free estimates: (813) 479-5578", - keywords: "plumber Spring Hill FL, plumbing contractor Palm Harbor, repipe specialist Florida, emergency plumber, bathroom remodel, 24/7 plumbing service", - metadataBase: new URL("https://pbjplumbing.com"), - alternates: { - canonical: "https://pbjplumbing.com", - }, - openGraph: { - title: "PB&J Plumbing | 27 Years of Trusted Service", - description: "Professional plumbing services Spring Hill & Palm Harbor. 5-star rated. Call (813) 479-5578 for emergency repairs and free estimates.", - url: "https://pbjplumbing.com", - siteName: "PB&J Plumbing LLC", - type: "website", - images: [ - { - url: "https://pbjplumbing.com/og-hero.jpg", - alt: "PB&J Plumbing - Professional Plumbing Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "PB&J Plumbing | Spring Hill & Palm Harbor, FL", - description: "5-star plumbing service. Emergency repairs, remodels, repipe systems. Licensed & insured. (813) 479-5578", - images: ["https://pbjplumbing.com/twitter-hero.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "PB&J Plumbing - Trusted Plumbing Services in Spring Hill & Palm Harbor, FL", description: "27 years of expert plumbing services. Emergency repairs, bathroom remodels, full repiping, and more. Licensed & insured. Free estimates. Serving Spring Hill, Palm Harbor & surrounding areas."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +