diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index bb5e181..be0b18f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,62 +1,28 @@
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 { Geist, Geist_Mono } 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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-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 geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Dunham Plumbing Co. | Local Nashville Plumber | 24/7 Service", description: "Trusted local plumber in Nashville, IN. Fast, reliable plumbing services for homes. 4.7★ rated with 40+ reviews. Emergency repair available 24/7. Call (812) 988-0248.", keywords: "plumber Nashville IN, plumbing services Nashville Indiana, emergency plumber, water heater repair, drain cleaning, local plumber", metadataBase: new URL("https://dunhamplumbing.com"),
- alternates: {
- canonical: "https://dunhamplumbing.com"},
- openGraph: {
- title: "Dunham Plumbing Co. | Trusted Local Plumber", description: "Professional plumbing services in Nashville, IN. 4.7★ rated. Fast response times, fair pricing, licensed & insured.", url: "https://dunhamplumbing.com", siteName: "Dunham Plumbing Co.", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721548.jpg", alt: "Dunham Plumbing Co. Professional Service"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Dunham Plumbing Co. | Local Nashville Plumber", description: "Fast, reliable plumbing services. 4.7★ rated with 40+ reviews. Call (812) 988-0248.", images: ["http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721548.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Dunham Plumbing Co. | Trusted Local Plumber in Nashville, IN", description: "Fast, reliable plumbing services in Nashville, IN. 4.7★ rated with 40+ reviews. 24/7 emergency service available."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-