From 23ca9e59280e8b6680f78c1e7641f8ee8fc74ee1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:39:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b857bac..fd37151 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,13 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -import { Halant } from "next/font/google"; +import { Poppins } 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 poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const inter = Inter({ @@ -22,11 +17,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 +40,7 @@ export default function RootLayout({ {children}