/* ============================================================ Our Work page sections ============================================================ */ const WorkHero = () =>
Our work Our Work Speaks for Itself Over two years of professional cleaning in Singapore has taken us into some extraordinary spaces — immaculate fine dining restaurants, high-traffic offices, busy HDB homes, and pristine condominiums. Here's a look at who we work with, and what we do for them.
+
Years in Singapore
+
F&B partners
Service categories
Commitment, every visit
; const PrestigiousClients = () => { const featured = [ { name: "Sona's Grill", desc: "Indian Restaurant & Bar" }, { name: "Bottle Tree Café Restaurant", desc: "Café & Dining" }, { name: "Lakeside Eatery", desc: "Established 1989" }, { name: "Mamma Mia! Trattoria e Caffè", desc: "Italian Trattoria & Caffè" }]; const groups = [ { label: "Fine Dining", names: ["Punjab Grill", "Neon Pigeon", "Wakanui", "Alat", "Long Play"] }, { label: "Casual Dining", names: ["Pasta Bar", "Bonding Kitchen", "Chancita", "The Spot", "Perch"] }, { label: "Local Favourites", names: ["Ponggol Nasi Lemak", "Tinto", "Mischief", "Rookery", "Ola", "Tonite"] }]; return (
Our prestigious clients

Trusted by Singapore's
Finest Establishments

Our client relationships are built on consistent results, clear communication, and a genuine commitment to quality — from beloved local eateries to acclaimed fine dining rooms.

{featured.map((c, i) =>
{c.name}
{c.desc}
)}
{groups.map((g, i) =>
{g.label}
{g.names.map((n) => {n})}
)}
); }; const WhatWeDeliver = () => { const items = [ "A properly scoped, site-assessed cleaning plan — no generic packages", "A trained, professional crew that arrives on time and works with care", "NEA-compliant practices on every commercial or F&B job", "Post-clean verification before the team departs", "A dedicated contact for feedback, scheduling & follow-ups", "Consistent quality on every visit — not just the first clean"]; return (
What every client gets One Standard.
Every Project.
Regardless of the size of the project or the type of space, every client who works with Bright Solution receives the same standard of service.
{items.map((it, i) => {it} )}
); }; const GALLERY = [ { cat: "Residential", photo: "photo-1567767292278-a4f21aa2d36e", cap: "Condo living room — full home clean, Orchard" }, { cat: "Commercial", photo: "photo-1497366754035-f200968a6e72", cap: "Corporate office — daily maintenance, CBD" }, { cat: "F&B", photo: "photo-1556911220-bff31c812dba", cap: "Commercial kitchen — degreasing & sanitising" }, { cat: "Residential", photo: "photo-1586023492125-27b2c045efd7", cap: "HDB interior — move-in deep clean, Punggol" }, { cat: "Commercial", photo: "photo-1497366811353-6870744d04b2", cap: "Meeting space — periodic deep clean, Raffles Place" }, { cat: "F&B", photo: "photo-1581349485608-9469926a8e5e", cap: "Stainless prep area — SFA-ready clean" }, { cat: "Residential", photo: "photo-1484154218962-a197022b5858", cap: "Kitchen — residential deep clean, Tampines" }, { cat: "Commercial", photo: "photo-1531973576160-7125cd663d86", cap: "Open-plan office — floor care & polishing" }, { cat: "F&B", photo: "photo-1559329007-40df8a9345d8", cap: "Front-of-house — dining hall reset" }, { cat: "Residential", photo: "photo-1522708323590-d24dbb6b0267", cap: "Landed home — weekly upkeep, East Coast" }, { cat: "Commercial", photo: "photo-1604328698692-f76ea9498e76", cap: "Co-working floor — high-touch disinfection" }, { cat: "F&B", photo: "photo-1466637574441-749b8f19452f", cap: "Café kitchen — hood & exhaust degrease" }]; const Gallery = () => { const cats = ["All", "Residential", "Commercial", "F&B"]; const [active, setActive] = useState("All"); return ( ); }; const WorkTestimonials = () => { const cards = [ { body: "The team has been cleaning our restaurant kitchen for months and the difference is visible every single day. Thorough, punctual, and they genuinely understand what a commercial kitchen needs. We won't go anywhere else.", nm: "Rajesh", biz: "Restaurant Owner · Tanjong Pagar" }, { body: "We switched to Bright Solution for our office and the consistency is night and day. Same crew every week, always on time, and our staff have noticed how much fresher the space feels.", nm: "Michelle Tan", biz: "Operations Lead · Raffles Place" }, { body: "I work long hours, and their fortnightly clean has genuinely given me my weekends back. My condo has never looked better and they're so easy to deal with over WhatsApp.", nm: "Daniel Lim", biz: "Homeowner · Orchard" }, { body: "From hood degreasing to the dining area, they keep us SFA-ready without ever disrupting service. And our account manager actually picks up the phone.", nm: "Aisyah", biz: "Café Manager · Yishun" }, { body: "Booked a move-out deep clean and got my full deposit back — spotless, even the spots I'd given up on. Quick booking and a transparent quote.", nm: "Priya", biz: "Tenant · Tampines" }, { body: "Reliable, professional, and detail-obsessed. Our shopfront and back areas are always presentable for customers. Highly recommend for any retail business.", nm: "Kevin Ng", biz: "Retail Manager · Bugis" }]; return (
Client testimonials

What Our Clients Say About Us

{cards.map((c, i) =>

{c.body}

{c.nm.charAt(0)}
{c.nm}
{c.biz}
)}
); }; const WorkCTA = ({ onQuote }) =>
Let's begin Want Results Like These? Whether you need a one-time deep clean or a long-term cleaning partner for your home, office, or restaurant — we're ready to get started. Contact us today for a free, no-obligation assessment.
Call us
+65 935 7444 7
Email us
contact@brightsolutionandservice.com
; Object.assign(window, { WorkHero, PrestigiousClients, WhatWeDeliver, Gallery, WorkTestimonials, WorkCTA });