diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2e2fcdb..be2fac2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Hazen Plumbing LLC | 24/7 Emergency Plumbing Satanta, KS", description: "Professional plumbing services in Satanta, KS. 24/7 emergency response, affordable rates, and local expertise. Call now for same-day service!", keywords: "plumbing services, emergency plumbing, Satanta KS, pipe repair, water heater, local plumber", metadataBase: new URL("https://hazenplumbing.com"),
- alternates: {
- canonical: "https://hazenplumbing.com"
- },
- openGraph: {
- title: "Hazen Plumbing LLC - Trusted Local Plumber", description: "24/7 emergency plumbing services in Satanta, KS. Fast response, affordable rates, professional expertise.", url: "https://hazenplumbing.com", siteName: "Hazen Plumbing LLC", images: [
- {
- url: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg", alt: "Professional plumbing services"
- }
- ],
- type: "website"
- },
- twitter: {
- card: "summary_large_image", title: "Hazen Plumbing LLC - Your Local Plumber", description: "24/7 emergency plumbing. Fast response. Fair pricing. Trusted since day one.", images: ["http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Hazen Plumbing LLC | Emergency Plumbing Services in Satanta, KS", description: "24/7 emergency plumbing services in Satanta, KS. Fast, reliable, and affordable. Call (620) 555-0147 for immediate assistance."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-