Merge version_1 into main #1
@@ -55,7 +55,7 @@ export default function AboutPage() {
|
||||
}
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg?_wi=6"
|
||||
imageAlt="Professional cleaning team"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -73,7 +73,7 @@ export default function AboutPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="left"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=9"
|
||||
imageAlt="Professional cleaning service"
|
||||
mediaAnimation="slide-up"
|
||||
bulletPoints={[
|
||||
@@ -132,7 +132,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=7"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -207,7 +207,7 @@ export default function ContactPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=10"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -1,28 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Cleaning & Housekeeping Services in Noida | We Clean",
|
||||
description: "Expert cleaning services in Noida - 4.9★ rated. Chair cleaning (₹150), deep cleaning, sofa cleaning, carpet cleaning & commercial housekeeping. 24/7 available. Get free quote now!",
|
||||
keywords: "cleaning services Noida, housekeeping Noida, chair cleaning, deep cleaning, sofa cleaning, carpet cleaning, office cleaning, professional cleaners",
|
||||
metadataBase: new URL("https://weclean.in"),
|
||||
alternates: {
|
||||
canonical: "https://weclean.in",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Professional Cleaning Services in Noida | We Clean",
|
||||
description: "4.9★ rated cleaning services - Chair cleaning from ₹150. Deep cleaning, sofa, carpet & commercial housekeeping. Open 24/7. Get free quote!",
|
||||
url: "https://weclean.in",
|
||||
siteName: "We Clean Housekeeping Services",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg",
|
||||
alt: "Professional Cleaning Services in Noida",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Professional Cleaning Services in Noida",
|
||||
description: "4.9★ rated • Chair cleaning ₹150 • Deep cleaning • 24/7 Available",
|
||||
images: ["http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -60,7 +60,7 @@ export default function HomePage() {
|
||||
}
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=1"
|
||||
imageAlt="Professional cleaning service team"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -121,7 +121,7 @@ export default function HomePage() {
|
||||
title: "Chair Dry Cleaning",
|
||||
description: "Professional chair cleaning starting at ₹150. Removes stains, dust mites, and improves hygiene. Extends furniture life.",
|
||||
tag: "Popular",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=1",
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Service",
|
||||
@@ -134,7 +134,7 @@ export default function HomePage() {
|
||||
title: "Deep Home Cleaning",
|
||||
description: "Complete deep cleaning for your home. Thorough sanitization, all surfaces covered. Professional equipment and trained staff.",
|
||||
tag: "Services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=1",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Free Quote",
|
||||
@@ -147,7 +147,7 @@ export default function HomePage() {
|
||||
title: "Commercial Housekeeping",
|
||||
description: "Professional office cleaning and maintenance. Keep your workspace clean and professional. Customized schedules available.",
|
||||
tag: "Services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg?_wi=1",
|
||||
buttons: [
|
||||
{
|
||||
text: "Contact Us",
|
||||
@@ -160,7 +160,7 @@ export default function HomePage() {
|
||||
title: "Carpet Cleaning",
|
||||
description: "Expert carpet cleaning and stain removal. Deep cleaning with professional equipment. Extends carpet life.",
|
||||
tag: "Services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-man-rolling-yoga-mat-floor_23-2148097396.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-man-rolling-yoga-mat-floor_23-2148097396.jpg?_wi=1",
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Now",
|
||||
@@ -173,7 +173,7 @@ export default function HomePage() {
|
||||
title: "Sofa Cleaning",
|
||||
description: "Professional sofa and upholstery cleaning. Removes stains, dust, and allergens. Fabric-safe cleaning methods.",
|
||||
tag: "Services",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=2",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Quote",
|
||||
@@ -212,25 +212,25 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Chair Dry Cleaning",
|
||||
price: "₹150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=3"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Removes Stains",
|
||||
price: "Deep Clean",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=4"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Removes Dust Mites",
|
||||
price: "Allergen Control",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=5"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Extends Furniture Life",
|
||||
price: "Long-lasting",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=6"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -244,7 +244,7 @@ export default function HomePage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg?_wi=2"
|
||||
imageAlt="Professional cleaning team"
|
||||
mediaAnimation="slide-up"
|
||||
bulletPoints={[
|
||||
@@ -297,7 +297,7 @@ export default function HomePage() {
|
||||
name: "Mukul Bana",
|
||||
role: "Homeowner, Noida",
|
||||
testimonial: "Great service! A half-yearly or yearly cleaning schedule works perfectly for my home. The team is professional and thorough.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1666.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1666.jpg?_wi=1",
|
||||
icon: ThumbsUp
|
||||
},
|
||||
{
|
||||
@@ -305,7 +305,7 @@ export default function HomePage() {
|
||||
name: "Amar Bhanu",
|
||||
role: "Business Owner, Sector 62",
|
||||
testimonial: "Staff behaviour is excellent. They are courteous, respectful, and very professional. I trust them with my office cleaning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg?_wi=1",
|
||||
icon: ThumbsUp
|
||||
},
|
||||
{
|
||||
@@ -313,7 +313,7 @@ export default function HomePage() {
|
||||
name: "Vishal Singh",
|
||||
role: "Homeowner, Greater Noida",
|
||||
testimonial: "The cleaning process is very thorough and the price is very reasonable. Highly recommend We Clean for any cleaning needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-middle-finger-gesture-while-working-office_23-2150040035.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-middle-finger-gesture-while-working-office_23-2150040035.jpg?_wi=1",
|
||||
icon: ThumbsUp
|
||||
},
|
||||
{
|
||||
@@ -321,7 +321,7 @@ export default function HomePage() {
|
||||
name: "Priya Sharma",
|
||||
role: "Corporate Manager, Noida",
|
||||
testimonial: "Consistent quality and reliability. Our office always looks pristine. They've been our trusted cleaning partner for over a year.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesswoman-posing-outdoors_23-2148767054.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesswoman-posing-outdoors_23-2148767054.jpg?_wi=1",
|
||||
icon: ThumbsUp
|
||||
},
|
||||
{
|
||||
@@ -329,7 +329,7 @@ export default function HomePage() {
|
||||
name: "Rajesh Patel",
|
||||
role: "Homeowner, Indirapuram",
|
||||
testimonial: "Professional service at affordable prices. They pay attention to details and our furniture looks brand new after their cleaning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=1",
|
||||
icon: ThumbsUp
|
||||
},
|
||||
{
|
||||
@@ -337,7 +337,7 @@ export default function HomePage() {
|
||||
name: "Neha Verma",
|
||||
role: "Property Manager, Ghaziabad",
|
||||
testimonial: "Excellent response time and quality work. We've used them for multiple properties and they never disappoint.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg?_wi=1",
|
||||
icon: ThumbsUp
|
||||
}
|
||||
]}
|
||||
@@ -393,7 +393,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=2"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -108,7 +108,7 @@ export default function ReviewsPage() {
|
||||
name: "Mukul Bana",
|
||||
role: "Homeowner, Noida",
|
||||
testimonial: "Great service! A half-yearly or yearly cleaning schedule works perfectly for my home. The team is professional and thorough.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1666.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1666.jpg?_wi=2",
|
||||
icon: "ThumbsUp",
|
||||
},
|
||||
{
|
||||
@@ -116,7 +116,7 @@ export default function ReviewsPage() {
|
||||
name: "Amar Bhanu",
|
||||
role: "Business Owner, Sector 62",
|
||||
testimonial: "Staff behaviour is excellent. They are courteous, respectful, and very professional. I trust them with my office cleaning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5370.jpg?_wi=2",
|
||||
icon: "ThumbsUp",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function ReviewsPage() {
|
||||
name: "Vishal Singh",
|
||||
role: "Homeowner, Greater Noida",
|
||||
testimonial: "The cleaning process is very thorough and the price is very reasonable. Highly recommend We Clean for any cleaning needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-middle-finger-gesture-while-working-office_23-2150040035.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-middle-finger-gesture-while-working-office_23-2150040035.jpg?_wi=2",
|
||||
icon: "ThumbsUp",
|
||||
},
|
||||
{
|
||||
@@ -132,7 +132,7 @@ export default function ReviewsPage() {
|
||||
name: "Priya Sharma",
|
||||
role: "Corporate Manager, Noida",
|
||||
testimonial: "Consistent quality and reliability. Our office always looks pristine. They've been our trusted cleaning partner for over a year.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesswoman-posing-outdoors_23-2148767054.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesswoman-posing-outdoors_23-2148767054.jpg?_wi=2",
|
||||
icon: "ThumbsUp",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function ReviewsPage() {
|
||||
name: "Rajesh Patel",
|
||||
role: "Homeowner, Indirapuram",
|
||||
testimonial: "Professional service at affordable prices. They pay attention to details and our furniture looks brand new after their cleaning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=2",
|
||||
icon: "ThumbsUp",
|
||||
},
|
||||
{
|
||||
@@ -148,7 +148,7 @@ export default function ReviewsPage() {
|
||||
name: "Neha Verma",
|
||||
role: "Property Manager, Ghaziabad",
|
||||
testimonial: "Excellent response time and quality work. We've used them for multiple properties and they never disappoint.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-woman-white-shirt_23-2148095748.jpg?_wi=2",
|
||||
icon: "ThumbsUp",
|
||||
},
|
||||
]}
|
||||
@@ -180,7 +180,7 @@ export default function ReviewsPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=9"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -89,7 +89,7 @@ export default function ServiceAreasPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=10"
|
||||
imageAlt="Professional cleaning team in Noida"
|
||||
mediaAnimation="slide-up"
|
||||
bulletPoints={[
|
||||
@@ -153,7 +153,7 @@ export default function ServiceAreasPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=8"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function ChairDryCleaningPage() {
|
||||
},
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=8"
|
||||
imageAlt="Professional chair cleaning service"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -71,7 +71,7 @@ export default function ChairDryCleaningPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=9"
|
||||
imageAlt="Professional chair cleaning process"
|
||||
mediaAnimation="slide-up"
|
||||
bulletPoints={[
|
||||
@@ -124,7 +124,7 @@ export default function ChairDryCleaningPage() {
|
||||
title: "Inspection & Assessment",
|
||||
description: "We inspect your chair fabric and identify specific stains or problem areas before starting the cleaning process",
|
||||
tag: "Step 1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=10",
|
||||
buttons: [
|
||||
{
|
||||
text: "Learn More",
|
||||
@@ -137,7 +137,7 @@ export default function ChairDryCleaningPage() {
|
||||
title: "Pre-Treatment",
|
||||
description: "Specialized pre-treatment solutions are applied to break down tough stains and prepare the fabric for deep cleaning",
|
||||
tag: "Step 2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=11",
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Service",
|
||||
@@ -150,7 +150,7 @@ export default function ChairDryCleaningPage() {
|
||||
title: "Professional Dry Cleaning",
|
||||
description: "Using advanced dry-cleaning technology, we safely remove dirt, allergens, and stains without water damage",
|
||||
tag: "Step 3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=12",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Quote",
|
||||
@@ -185,7 +185,7 @@ export default function ChairDryCleaningPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=4"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -55,7 +55,7 @@ export default function CommercialCleaningPage() {
|
||||
}
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg?_wi=4"
|
||||
imageAlt="Professional office cleaning service"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -79,7 +79,7 @@ export default function CommercialCleaningPage() {
|
||||
title: "Daily Office Cleaning",
|
||||
description: "Regular office maintenance including desk cleaning, floor care, and waste management. Keeps your workspace fresh and professional every day.",
|
||||
tag: "Daily",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg?_wi=5",
|
||||
buttons: [
|
||||
{
|
||||
text: "Learn More",
|
||||
@@ -92,7 +92,7 @@ export default function CommercialCleaningPage() {
|
||||
title: "Deep Office Sanitization",
|
||||
description: "Comprehensive sanitization of office spaces including conference rooms, restrooms, and common areas. Medical-grade cleaning solutions for health and safety.",
|
||||
tag: "Sanitization",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=8",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Quote",
|
||||
@@ -105,7 +105,7 @@ export default function CommercialCleaningPage() {
|
||||
title: "Carpet & Upholstery Care",
|
||||
description: "Professional carpet cleaning and office furniture maintenance. Extends the life of your office assets and maintains a professional appearance.",
|
||||
tag: "Maintenance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-man-rolling-yoga-mat-floor_23-2148097396.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/old-man-rolling-yoga-mat-floor_23-2148097396.jpg?_wi=2",
|
||||
buttons: [
|
||||
{
|
||||
text: "Schedule Service",
|
||||
@@ -142,7 +142,7 @@ export default function CommercialCleaningPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=6"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function DeepCleaningPage() {
|
||||
},
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=3"
|
||||
imageAlt="Deep home cleaning service"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -71,7 +71,7 @@ export default function DeepCleaningPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=4"
|
||||
imageAlt="Professional deep cleaning service"
|
||||
mediaAnimation="slide-up"
|
||||
bulletPoints={[
|
||||
@@ -124,7 +124,7 @@ export default function DeepCleaningPage() {
|
||||
title: "Living & Bedroom Areas",
|
||||
description: "Thorough cleaning of furniture, upholstery, under beds, inside closets, and all surfaces from top to bottom",
|
||||
tag: "Interior",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=5",
|
||||
buttons: [
|
||||
{
|
||||
text: "Inquire",
|
||||
@@ -137,7 +137,7 @@ export default function DeepCleaningPage() {
|
||||
title: "Kitchen Deep Clean",
|
||||
description: "Professional cleaning inside and behind appliances, cabinets, and surfaces. Grease and stain removal.",
|
||||
tag: "Kitchen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=6",
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Service",
|
||||
@@ -150,7 +150,7 @@ export default function DeepCleaningPage() {
|
||||
title: "Bathroom Sanitization",
|
||||
description: "Complete bathroom deep clean including tiles, grout, fixtures, and thorough disinfection",
|
||||
tag: "Bathroom",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=7",
|
||||
buttons: [
|
||||
{
|
||||
text: "Get Quote",
|
||||
@@ -185,7 +185,7 @@ export default function DeepCleaningPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=5"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
@@ -54,7 +54,7 @@ export default function ServicesPage() {
|
||||
title: "Chair Dry Cleaning",
|
||||
description: "Professional chair cleaning starting at ₹150. Removes stains, dust mites, and improves hygiene. Extends furniture life. Certified safe for all fabric types.",
|
||||
tag: "Popular",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cleaning-indoors_23-2150454492.jpg?_wi=7",
|
||||
imageAlt: "Professional chair cleaning service",
|
||||
buttons: [
|
||||
{
|
||||
@@ -68,7 +68,7 @@ export default function ServicesPage() {
|
||||
title: "Deep Home Cleaning",
|
||||
description: "Complete deep cleaning for your home. Thorough sanitization, all surfaces covered. Professional equipment and trained staff. Transform your living space.",
|
||||
tag: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358966.jpg?_wi=2",
|
||||
imageAlt: "Deep home cleaning service",
|
||||
buttons: [
|
||||
{
|
||||
@@ -82,7 +82,7 @@ export default function ServicesPage() {
|
||||
title: "Commercial Office Cleaning",
|
||||
description: "Professional office cleaning and maintenance. Keep your workspace clean and professional. Customized schedules available for businesses of all sizes.",
|
||||
tag: "Business",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-men-high-five-office_23-2149345549.jpg?_wi=3",
|
||||
imageAlt: "Commercial office cleaning service",
|
||||
buttons: [
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function ServicesPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg?_wi=3"
|
||||
imageAlt="We Clean Housekeeping Services"
|
||||
logoText="We Clean"
|
||||
copyrightText="© 2024 We Clean Housekeeping Services. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user