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