From 195895a7a249b6008242ea69722b68fe3e149c50 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 21:16:49 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d1798e..26c5f56 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Outfit } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Hannah's Haven LLC | Premium Residential Cleaning Services", description: "Elevated home care and meticulous residential cleaning for homeowners who expect exceptional standards. Fully insured, locally owned, and satisfaction guaranteed.", keywords: "premium cleaning service, residential cleaning, luxury home care, local cleaning company, professional cleaners", metadataBase: new URL("https://hannahshaven.com"), - alternates: { - canonical: "https://hannahshaven.com"}, - openGraph: { - title: "Hannah's Haven LLC | Premium Residential Cleaning", description: "Experience elevated home care with meticulous cleaning and exceptional service standards.", url: "https://hannahshaven.com", siteName: "Hannah's Haven LLC", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg", alt: "Luxury kitchen interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hannah's Haven LLC | Premium Cleaning Services", description: "Elevated home care designed for homeowners who expect more.", images: ["http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Hannah's Haven LLC - Premium Residential Cleaning", description: "Elevated home care with exceptional standards. Meticulous, reliable residential cleaning for homeowners who expect more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}