diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 5d6f804..27b612e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,53 +1,28 @@
import type { Metadata } from "next";
-import { Manrope } from "next/font/google";
-import { Halant } from "next/font/google";
-import { Inter } 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 manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Anderson Heating & Plumbing | 24/7 Emergency Service", description: "Expert heating and plumbing services with 25+ years experience. Licensed, insured, 24/7 emergency response. Free quotes available.", keywords: "heating repair, plumbing service, emergency plumber, furnace repair, water heater, drain cleaning", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Anderson Heating & Plumbing", description: "Expert heating and plumbing solutions. 24/7 emergency service available.", siteName: "Anderson Heating & Plumbing", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53082.jpg", alt: "Anderson Heating & Plumbing Services"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Anderson Heating & Plumbing | Expert Service", description: "24/7 emergency heating and plumbing services"},
-};
+ title: "Anderson Heating & Plumbing | 24/7 Emergency Service", description: "Expert heating and plumbing solutions with 24/7 emergency service. Licensed, insured, and trusted by thousands of homeowners."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-