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 (
-
-