From 76c430fa8d729a476f08f8a1f3f0208278b7633f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 14:35:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++++++------------------------------------ 1 file changed, 9 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f1825bc..3a06014 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,23 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "FlowWorks | Premium Plumbing Service", description: "Expert plumbing solutions with 20+ years experience. 24/7 emergency service, licensed & insured. Schedule your appointment today.", keywords: "plumbing service, emergency plumbing, pipe repair, water heater installation, drain cleaning, licensed plumber", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "FlowWorks | Premium Plumbing Service", description: "Expert plumbing solutions engineered for perfection. Available 24/7.", siteName: "FlowWorks", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55834.jpg", alt: "FlowWorks Professional Plumbing Service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "FlowWorks | Premium Plumbing Service", description: "Expert plumbing solutions available 24/7.", images: ["http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55834.jpg"], - }, -}; + title: "FlowWorks - Premium Plumbing Solutions", description: "Expert plumbing services engineered for perfection. 24/7 emergency response, licensed and insured professionals."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}