diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3f11781..b857bac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,20 @@ 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"], }); @@ -11,14 +22,11 @@ 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, @@ -34,7 +42,7 @@ export default function RootLayout({ {children}