/* ============================================================ About Us page sections ============================================================ */ const AboutHero = ({ onQuote }) =>
About us · Bright Solution & Service We're More Than Just a Cleaning Company — We're Your Partner in Clean Bright Solution and Service Pte Ltd was founded with one clear purpose: to raise the standard of professional cleaning services in Singapore. Every home, office, and food establishment deserves to be genuinely clean — not just surface-level tidy, but truly hygienic and well-maintained. Our Services
Premium restaurant partners
2+ years trusted across Singapore
What drives us
Partner in Clean
Trained & vetted
People First
; const OurStory = () =>
2+ yrs
Building our reputation
15+
F&B partners & counting
5
Regions served
Our story From a Small Team to
a Name You Can Trust

We started small — a tight-knit team with high standards and a deep belief that professionalism in cleaning was long overdue in Singapore. In just over two years, we've built a reputation we're proud of: a company that shows up, does the job right, and genuinely cares about the spaces we clean and the people who use them.

Today, we work with residential households, corporate offices, retail businesses, and F&B outlets across Singapore — including premium fine dining restaurants, casual dining favourites, and well-loved local establishments. A testament to the trust the industry has placed in us.

; const VisionMission = () =>
Our purpose

Our Vision & Mission

Our Vision

We envision a Singapore where every space — from a family's HDB flat to a bustling restaurant kitchen — is safe, hygienic, and cared for. A cleaner Singapore is a healthier, happier Singapore, and we're committed to being part of that every single day.

Our Mission

To deliver cleaning solutions that genuinely exceed expectations. We go beyond the basics — using the right techniques, the right products, and the right people — to restore and maintain every space we work in to its very best condition.

; const Values = () => { const items = [ { icon: "shield", title: "Integrity in Every Job", body: "We treat every space as if it were our own — doing the work properly even when no one is watching, and always being transparent with our clients about what needs to be done." }, { icon: "users", title: "A Team You Can Trust", body: "Every member of our cleaning team is trained, vetted, and held to a consistent standard. We invest in our people because the quality of your experience starts with them." }, { icon: "handshake", title: "Solutions That Fit Your Life", body: "No two clients are the same. We offer flexible scheduling, customisable service scopes, and genuine responsiveness — because your time and your space matter." }]; return (
What drives us

The Values Behind
Every Clean

{items.map((it, i) =>
{String(i + 1).padStart(2, "0")}

{it.title}

{it.body}

)}
); }; const WhoWeServe = () => { const clients = [ "Homeowners & tenants — HDB flats, condominiums & landed properties", "Small & medium enterprises (SMEs) and corporate offices", "Retail spaces, commercial complexes & co-working environments", "Restaurants, cafés, food courts & commercial kitchens", "Hotels, event venues & serviced apartments"]; return (
Who we serve Clients of Every
Shape & Size
We're proud to serve a diverse range of clients across Singapore — wherever there's a space worth caring for, we're ready.
{clients.map((c, i) => {c} )}
); }; const Partners = () => { 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 F&B partners

Trusted by Singapore's
Best Restaurants

We're honoured to be the cleaning partner of choice for some of Singapore's most respected dining establishments.

{groups.map((g, i) =>
{g.label}
{g.names.map((n) => {n})}
)}
Being trusted by these establishments means our F&B cleaning standards are genuinely world-class — and that same standard is what every one of our clients receives.
); }; const AboutCTA = ({ onQuote }) =>
Get in touch Let's Work Together Ready to experience the Bright Solution difference? Reach out to our team today — we'd love to understand your needs and show you what a truly professional cleaning service looks like.
Call us
+65 935 7444 7
Email us
contact@brightsolutionandservice.com
; Object.assign(window, { AboutHero, OurStory, VisionMission, Values, WhoWeServe, Partners, AboutCTA });