/* ============================================================ Top sections: Nav, Hero, Marquee, About, Services, Stats ============================================================ */ const HOME = "https://brightsolutionandservice.com/"; const Nav = ({ onQuote, active = "Home" }) => { const [scrolled, setScrolled] = useState(false); useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 30); window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); const links = [["Home", HOME], ["About Us", "about.html"], ["Service", "service.html"], ["Our Works", "our-work.html"], ["Contact Us", "contact.html"]]; return ( ); }; const Hero = ({ onQuote }) =>
Available now · 2+ yrs in Singapore Singapore's Trusted Cleaning Partner — For Homes, Offices & Restaurants Professional cleaning you can count on, every single time. Spotless results across residential, commercial, and F&B spaces all over Singapore. View Our Services
Premium restaurant partners
Covering all 28 postal districts
Spotless, every time
100% Satisfaction
Compliance
NEA Standards
Always
On Time
; const Marquee = () => { const items = ["Residential Cleaning", "Commercial Cleaning", "F&B Cleaning", "Deep Cleaning", "Office Upkeep", "Kitchen Hygiene", "Move-in / Move-out"]; const Row = () =>
{[...items, ...items].map((t, i) => {t} )}
; return
; }; const About = () =>
2+ yrs
Cleaning Singapore
3×
Service categories
28
Postal districts
Why Singapore trusts us A Cleaner Space.
A Better Day. Every Time.

At Bright Solution and Service Pte Ltd, we know a clean environment isn't just about appearances — it's about the well-being, safety, and productivity of the people who live and work in it. We approach every job, big or small, with the same dedication and care.

From spotless HDB flats in Toa Payoh to busy commercial kitchens in the CBD, our experienced team brings precision, reliability, and genuine pride to every space we clean.

; const Services = ({ onQuote }) => { const svc = [ { num: "01", icon: "home", title: "Residential Cleaning", img: "spotless living room", photo: "photo-1567767292278-a4f21aa2d36e", body: "Your home deserves the best. Our professional home cleaners handle everything — from routine upkeep to thorough deep cleans — so you can focus on what matters most." }, { num: "02", icon: "building", title: "Commercial Cleaning", img: "modern office space", photo: "photo-1497366754035-f200968a6e72", body: "A clean workplace is a productive one. Reliable, scheduled cleaning for offices, retail outlets, warehouses and more — fully compliant with Singapore's NEA standards." }, { num: "03", icon: "chef", title: "F&B Cleaning", img: "stainless commercial kitchen", photo: "photo-1556911220-bff31c812dba", body: "Food hygiene is non-negotiable. Our specialist F&B team keeps your restaurant, café or food outlet kitchen-clean, grease-free, and audit-ready at all times." }]; return (
What we do

Our Services

Three specialised teams, one standard of excellence — whatever space you need cleaned, we have it covered under one roof.

{svc.map((s, i) =>
{s.num}

{s.title}

{s.body}

{e.preventDefault();onQuote();}}> Learn more
)}
); }; const Stats = () => { const stats = [ { el: <>+, l: "Years of professional cleaning experience in Singapore" }, { el: <>, l: "Service lines — Residential, Commercial & F&B, all under one roof", red: true }, { el: <>, l: "Commitment on every job — we never cut corners" }, { el: <>SME Brands, l: "Trusted by businesses across Singapore, from SMEs to established names" }]; return (
By the numbers

Numbers That Speak
for Themselves

{stats.map((s, i) =>
{s.red ? {s.el} : s.el}
{s.l}
)}
); }; Object.assign(window, { Nav, Hero, Marquee, About, Services, Stats });