diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4956b65..fabbde3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +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: "New Again House Wash | Pressure & Soft Washing Inman SC", description: "Professional pressure washing, soft washing, and gutter cleaning in Inman, SC. 2,500+ satisfied customers. Free estimates. Licensed & insured.", keywords: "pressure washing Inman SC, soft washing, gutter cleaning, house washing, exterior cleaning", metadataBase: new URL("https://newagainhousewash.com"),
- openGraph: {
- title: "New Again House Wash - Professional Cleaning Services", description: "Transform your property with professional pressure washing, soft washing, and gutter cleaning in Inman, SC.", url: "https://newagainhousewash.com", siteName: "New Again House Wash", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-psd/pressure-washing-service-instagram-posts_23-2151050406.jpg", alt: "Before and after house cleaning transformation"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "New Again House Wash", description: "Professional cleaning services in Inman, SC", images: ["http://img.b2bpic.net/free-psd/pressure-washing-service-instagram-posts_23-2151050406.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "New Again House Wash | Professional Pressure Washing in Inman, SC", description: "Professional pressure washing, soft washing, and gutter cleaning services in Inman, SC. Restore your home's curb appeal with expert exterior cleaning."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-