diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c71b141..5fd6f75 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,45 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Montserrat } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/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 montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Plumbing & Heating Doctor | 24/7 Emergency Plumber in Palmer, AK", description: "Palmer's trusted plumber & heating expert. 4.9★ rated, 16+ years experience, licensed & background checked. Same-day emergency service available 24/7. Free estimates.", keywords: "plumber Palmer AK, emergency plumber Palmer, water heater repair Palmer, drain cleaning Palmer, leak repair Palmer, 24/7 plumbing service", openGraph: {
- title: "Plumbing & Heating Doctor | Palmer, Alaska", description: "Fast, licensed, and trusted plumbing services in Palmer, Alaska. 4.9★ rating from 338+ customers. 24/7 emergency response.", siteName: "Plumbing and Heating Doctor", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Palmer's 24/7 Plumbing Expert", description: "Emergency plumbing services in Palmer, Alaska. Licensed professionals, free estimates, same-day service."},
-};
+ title: "Plumbing & Heating Doctor | Palmer, Alaska", description: "Palmer's trusted 24/7 plumbing and heating experts. Fast, licensed, and reliable service for emergency repairs, installations, and maintenance."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-