From 079b943c47f53312ef6d8231014d390ee2f071ac Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 00:51:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c82cfd0..be0784b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,22 @@ -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"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -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: "ProFlow Plumbing - 24/7 Emergency Plumbing Services", description: "Expert plumbing services available 24/7. Emergency repairs, maintenance plans, and professional installations. Fast response, certified technicians, fair pricing.", keywords: "plumbing services, emergency plumber, drain cleaning, water heater repair, 24/7 plumbing", openGraph: { - title: "ProFlow Plumbing - Professional Plumbing Solutions", description: "24/7 emergency plumbing services with certified technicians. Same-day service, fair pricing, customer satisfaction guaranteed.", siteName: "ProFlow Plumbing", type: "website"}, - robots: { - index: true, - follow: true, - }, + title: 'ProFlow Plumbing - 24/7 Emergency Plumbing Services', + description: 'Expert plumbing solutions with certified technicians available 24/7 for emergency repairs, maintenance, and installations.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}