Update src/app/layout.tsx

This commit is contained in:
2026-03-04 02:38:39 +00:00
parent d1e32b0e02
commit 735e3ebc11

View File

@@ -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({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}