diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 35fe6d2..8539529 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Brothers Plumbing | Emergency & Professional Plumbing Services", description: "24/7 emergency plumbing services with fast response times. Licensed professionals for repairs, installations, and maintenance. Call now for same-day service.", keywords: "plumbing, emergency plumber, plumbing repair, water heater, drain cleaning, professional plumber", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Brothers Plumbing | Professional Plumbing Services", description: "Expert plumbing solutions available 24/7. Fast, reliable, and affordable services for your home or business.", type: "website", siteName: "Brothers Plumbing"}, - twitter: { - card: "summary_large_image", title: "Brothers Plumbing | Professional Plumbing Services", description: "24/7 emergency plumbing services with experienced professionals."}, -}; + title: "Brothers Plumbing - Expert Plumbing Solutions", description: "24/7 emergency plumbing services with fast, reliable repairs for your home or business."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}