diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5546071..a5bfd2b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ProClean | Professional Cleaning Services in Montreal", description: "5-star rated professional home and condo cleaning in Montreal. Fast response, reliable team, satisfaction guaranteed. Book your cleaning today.", keywords: "cleaning services Montreal, house cleaning Montreal, condo cleaning, professional cleaners Quebec", openGraph: { - title: "ProClean - Professional Cleaning Montreal", description: "5-star professional cleaning for homes and condos in Montreal. Reliable, thorough, and fast.", type: "website", siteName: "ProClean", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-serious-man-wearing-rubber-yellow-gloves-cleaning-stov_1163-2425.jpg", alt: "ProClean Professional Cleaning Service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ProClean - Professional Cleaning Montreal", description: "5-star professional cleaning for homes and condos. Book your cleaning now.", images: ["http://img.b2bpic.net/free-photo/young-serious-man-wearing-rubber-yellow-gloves-cleaning-stov_1163-2425.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ProClean - Professional Cleaning Services Montreal", description: "Professional residential and commercial cleaning services in Montreal. 5-star rated, same-day service available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}