Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 19:16:38 +00:00
2 changed files with 8 additions and 44 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -153,7 +153,7 @@ export default function LandingPage() {
imageAlt="Professional cleaning team"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Sign Up for Updates"
buttonText="Get Free Cleaning Quote"
termsText="We respect your privacy. Call us anytime at (647) 927-4177 or visit our Calendly to book directly."
onSubmit={() => console.log("Email submission handled")}
mediaAnimation="none"