/* Bluehaus — Sectors, Services, About, Awards, Contact pages */ const { useState: useState2 } = React; // ====================== SECTORS ====================== function SectorsPage({ navigate }) { const data = window.BHG_DATA; return (
Sectors

Designed across six sectors — from quiet workplaces to loud restaurants.

Each sector has its own logic. We work from a shared set of principles — people-first, resilient, delivery-led — and adapt them to the building.
{data.sectors.map((s, i) => { const projs = data.projects.filter(p => p.sector === s.id); const reverse = i % 2 === 1; return (
{reverse ? ( <>
{projs.slice(0, 2).map(pr => ( { e.preventDefault(); navigate('projects/' + pr.slug); window.scrollTo(0,0); }} className="proj-card">
{pr.name}
{pr.name}
))}
) : ( <> )}
); })}
); } function SectorBlock({ s, count, idx, navigate }) { return (
0{idx + 1} {count} projects
{s.name}

{s.desc}

{ e.preventDefault(); navigate('projects?sector=' + s.id); }} className="link-arrow" style={{ marginTop: 28, display: 'inline-flex' }}> See {s.short.toLowerCase()} work →
); } // ====================== SERVICES ====================== function ServicesPage({ navigate }) { const data = window.BHG_DATA; return (
Services · Divisions

Three connected practices. One delivery model.

Architecture, interior design and MEP engineering, sized and staffed to run as a single project — or to be appointed independently.
{data.divisions.map((d, i) => (
Division {d.n}
{d.name}
{d.sub}

{d.blurb}

What that looks like in practice
    {servicesBullets(d.name).map((b, j) => (
  • 0{j + 1} {b}
  • ))}
{ e.preventDefault(); navigate('projects'); }} className="link-arrow" style={{ marginTop: 32, display: 'inline-flex' }}> See projects →
))}
Independent MEP appointments

Bluehaus Engineering takes independent MEP commissions — not only Bluehaus-designed buildings.

{ e.preventDefault(); navigate('contact'); }} className="btn btn-primary" style={{ background: 'var(--paper)', color: 'var(--ink)' }}> Brief our MEP team
); } function servicesBullets(name) { if (name === 'Architecture') return [ 'Concept design', 'Schematic + DD', 'Tender packages', 'Construction administration', 'Master-planning support', 'In-house BIM / VR / AR', ]; if (name === 'Interior Design') return [ 'Concept design', 'FF&E specification', 'Material libraries', 'Lighting design', 'Wayfinding integration', 'Procurement coordination', ]; return [ 'Mechanical systems', 'Electrical systems', 'Public health / plumbing', 'Energy modelling', 'LEED / WELL / Estidama', 'Independent commissions', ]; } // ====================== ABOUT ====================== function AboutPage({ navigate }) { const data = window.BHG_DATA; return (
Studio · Since 2003

A regional studio with international reach.

Founded in Dubai by Ben Corrigan in 2003, Bluehaus has spent over twenty years shaping the way the Middle East works, eats, shops and unwinds. In May 2025 we joined tp bennett, a 100-year-old London practice of 400+ designers — the studio you know, with a much bigger toolkit.
{data.stats.map((s, i) => (
{s.num}
{s.lab}
))}
Purpose

"To create inspirational, people-centric and resilient environments people love — through memorable journeys."

Values

A deep respect and understanding of the importance of people, culture and relationships, and a focus on consistent people-first customer service, continuous improvement and innovation.

Founder Ben Corrigan describes his leadership model as servant leader — a stance the rest of the studio has taken on.

15 years of collaboration, made formal.} />

On 22 May 2025, Bluehaus Group announced its merger with tp bennett, a London-headquartered architecture and interior design practice founded in 1921. The two firms had collaborated on regional and international projects for 15+ years before the deal.

Founder & Managing Director Ben Corrigan joins the tp bennett board and continues to lead the Middle East region. The day-to-day studio in Dubai is unchanged — same people, same standards, with a deeper bench behind it.

tp bennett merger
{data.team.map(t => (
{t.name.split(' ').map(n => n[0]).slice(0, 2).join('')}
{t.name}
{t.role}
))}

Post-merger portrait photography to follow.

); } // ====================== AWARDS ====================== function AwardsPage({ navigate }) { const data = window.BHG_DATA; return (
Awards & Recognition

Attributed awards — by year, by issuer, by project.

We list every award against the project that earned it. No vague counts, no unattributed plaques.
{data.awards.map((a, i) => (
{a.year}
{a.name}
{a.project}
{a.issuer}
))}
); } // ====================== CONTACT ====================== function ContactPage({ navigate }) { const data = window.BHG_DATA; const [sent, setSent] = useState2(false); const [form, setForm] = useState2({ name: '', email: '', company: '', phone: '', sector: 'workplace', type: 'new-build', location: '', message: '' }); const submit = (e) => { e.preventDefault(); setSent(true); }; return (
Contact · Start a project

Tell us about your project.

The Dubai studio routes every new-project enquiry within one working day. For non-project queries — careers, press, partnerships — use the same form and add a note.
{!sent ? (
setForm({ ...form, name: e.target.value })} placeholder="Jane Doe" />
setForm({ ...form, email: e.target.value })} placeholder="jane@company.com" />
setForm({ ...form, company: e.target.value })} placeholder="Company Ltd" />
setForm({ ...form, phone: e.target.value })} placeholder="+971 ..." />
setForm({ ...form, location: e.target.value })} placeholder="Dubai, UAE" />