From 735e3ebc110937b0a7e238730e092858d60f47d7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:38:39 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b857bac..3f11781 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,9 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -22,11 +11,14 @@ const inter = Inter({ export const metadata: Metadata = { title: "Calbren Cleaning | Professional Cleaning Services", description: "Professional cleaning services for homes and businesses. Led by Rachel Fitzgibbon. Reliable, eco-friendly, and detail-oriented cleaning solutions.", keywords: "cleaning services, professional cleaning, residential cleaning, commercial cleaning, home cleaning", metadataBase: new URL("https://calbren-cleaning.com"), alternates: { - canonical: "https://calbren-cleaning.com"}, + canonical: "https://calbren-cleaning.com" + }, openGraph: { - title: "Calbren Cleaning | Professional Cleaning Services", description: "Professional cleaning services for homes and businesses. Reliable, eco-friendly, and detail-oriented cleaning solutions.", url: "https://calbren-cleaning.com", siteName: "Calbren Cleaning", type: "website"}, + title: "Calbren Cleaning | Professional Cleaning Services", description: "Professional cleaning services for homes and businesses. Reliable, eco-friendly, and detail-oriented cleaning solutions.", url: "https://calbren-cleaning.com", siteName: "Calbren Cleaning", type: "website" + }, twitter: { - card: "summary_large_image", title: "Calbren Cleaning | Professional Cleaning Services", description: "Professional cleaning services for homes and businesses."}, + card: "summary_large_image", title: "Calbren Cleaning | Professional Cleaning Services", description: "Professional cleaning services for homes and businesses." + }, robots: { index: true, follow: true, @@ -42,7 +34,7 @@ export default function RootLayout({ {children}