/* global React, ReactDOM, TweaksPanel, useTweaks, TweakSection, TweakColor, TweakRadio, TweakToggle */
const { useState, useEffect, useMemo, useRef, useCallback } = React;
// -- Data loaders --------------------------------------------------------
const projectsData = JSON.parse(document.getElementById("projects-data").textContent);
const awardsData = JSON.parse(document.getElementById("awards-data").textContent);
const clientsData = JSON.parse(document.getElementById("clients-data").textContent);
const teamData = JSON.parse(document.getElementById("team-data").textContent);
const SECTORS = [
{ id: "all", label: "All", labelAr: "الكل" },
{ id: "commercial", label: "Commercial / Workplace", labelAr: "الأعمال" },
{ id: "hospitality", label: "Hospitality / F&B", labelAr: "الضيافة" },
{ id: "public", label: "Public / Education", labelAr: "العام" },
{ id: "residential", label: "Residential", labelAr: "السكنية" },
];
const COPY = {
en: {
dir: "ltr",
nav: { work: "Work", sectors: "Sectors", studio: "Studio", awards: "Awards", contact: "Contact", cta: "Start a project" },
hero: {
eyebrow: "Swiss Bureau — A Design & Build Practice",
h: "Interior\nDesign & Build,\nDubai. Since 2003.",
meta1: "Established",
meta1v: "2003",
meta2: "Studio",
meta2v: "Bay Square, Business Bay",
meta3: "Group",
meta3v: "Edifice · Lausanne",
strip: [
{ k: "Practice", v: "Single accountable partner —\ndesign through delivery." },
{ k: "Sectors", v: "Commercial · Hospitality ·\nF&B · Public · Residential." },
{ k: "Region", v: "United Arab Emirates +\nKingdom of Saudi Arabia." },
{ k: "Recent", v: "CID Awards 2024 — Winner.\n2025 — Shortlist, ALEC HQ." },
],
},
sectorsTitle: "Sectors",
sectorsLead: "Five disciplines under one Swiss-precision practice. Each sector portfolio is the work of the same team — only the brief and the section header change.",
workTitle: "Selected Work",
workLead: "A working portfolio. Click any project to open its case study. Per-project years and areas are populated on confirmation with the client.",
studioTitle: "The Studio",
studioP1: "Swiss Bureau Interior Design was founded in 2003 by Swiss interior architect Joakim de Rham as a Dubai outpost of the Edifice group of Lausanne — a 60-year design lineage rooted in Swiss precision.",
studioP2: "Two decades on, the practice operates two licensed entities — Swiss Bureau Interior Design LLC and Swiss Bureau Projects Supply LLC — delivering interior design and the fit-out that realises it under a single accountable partnership.",
studioP3: "Our work is the work of long client relationships: AtkinsRéalis, Egon Zehnder, ICD Brookfield, ALEC, Galadari Brothers, the W Hotel ATTIKO concept, Sharjah Broadcasting Authority, the University of Europe campus, and a residential portfolio for Jubail Island.",
awardsTitle: "Awards & Press",
clientsTitle: "Selected Clients",
contactTitle: "Start a project",
contactLead: "Tell us about the brief. We will reply within one working day.",
submit: "Send enquiry",
footnote: "We respect client confidentiality. Submissions route to sales@sb-id.com. Photography on this site is third-party and credited per project; per-project metadata (year, area) is confirmed prior to publication.",
},
ar: {
dir: "rtl",
nav: { work: "المشاريع", sectors: "القطاعات", studio: "الاستوديو", awards: "الجوائز", contact: "تواصل", cta: "ابدأ مشروعك" },
hero: {
eyebrow: "سويس بيرو — تصميم وتنفيذ",
h: "تصميم داخلي\nوتنفيذ متكامل،\nدبي. منذ ٢٠٠٣.",
meta1: "تأسس",
meta1v: "٢٠٠٣",
meta2: "الاستوديو",
meta2v: "باي سكوير، الخليج التجاري",
meta3: "المجموعة",
meta3v: "إديفيس · لوزان",
strip: [
{ k: "الممارسة", v: "شريك واحد للمسؤولية\nمن التصميم إلى التسليم." },
{ k: "القطاعات", v: "أعمال · ضيافة ·\nمطاعم · عام · سكني." },
{ k: "الإقليم", v: "الإمارات العربية المتحدة\nوالمملكة العربية السعودية." },
{ k: "الأحدث", v: "جوائز سي آي دي ٢٠٢٤ — فائز.\n٢٠٢٥ — قائمة قصيرة." },
],
},
sectorsTitle: "القطاعات",
sectorsLead: "خمس تخصصات في ممارسة واحدة بدقة سويسرية. كل قطاع يحمل توقيع الفريق نفسه — فقط البرنامج يتغير.",
workTitle: "أعمال مختارة",
workLead: "محفظة أعمال حيّة. اضغط على أي مشروع لفتح دراسة الحالة. يتم تأكيد سنة كل مشروع ومساحته مع العميل قبل النشر.",
studioTitle: "الاستوديو",
studioP1: "تأسست سويس بيرو للتصميم الداخلي عام ٢٠٠٣ على يد المهندس المعماري السويسري يواكيم دو رام، كفرع لمجموعة إديفيس في لوزان — إرث تصميمي يمتد لستين عاماً.",
studioP2: "بعد عقدين، تدير الممارسة كيانين مرخصين يقدمان التصميم والتنفيذ تحت شراكة واحدة مسؤولة.",
studioP3: "أعمالنا هي نتاج علاقات طويلة مع عملاء كبار: AtkinsRéalis، Egon Zehnder، ICD Brookfield، ALEC، وغيرهم.",
awardsTitle: "جوائز وإعلام",
clientsTitle: "عملاء مختارون",
contactTitle: "ابدأ مشروعك",
contactLead: "أخبرنا عن البرنامج. سنرد خلال يوم عمل واحد.",
submit: "إرسال",
footnote: "نحترم سرية العميل. ترسل الطلبات إلى sales@sb-id.com.",
}
};
// -- Tweaks defaults -----------------------------------------------------
const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{
"accent": "red",
"density": "comfortable",
"language": "en",
"heroAuto": true,
"showProjectCodes": true
}/*EDITMODE-END*/;
// -- Utilities -----------------------------------------------------------
function useScrolled(threshold = 24) {
const [scrolled, setScrolled] = useState(false);
useEffect(() => {
const on = () => setScrolled(window.scrollY > threshold);
on();
window.addEventListener("scroll", on, { passive: true });
return () => window.removeEventListener("scroll", on);
}, [threshold]);
return scrolled;
}
function fmtN(n) {
return String(n).padStart(2, "0");
}
// -- Components ----------------------------------------------------------
function LogoMark({ size = 22 }) {
return (
SB·ID
);
}
function Nav({ onCta, t, locale, setLocale }) {
const solid = useScrolled(40);
const links = [
{ id: "work", label: t.nav.work },
{ id: "sectors", label: t.nav.sectors },
{ id: "studio", label: t.nav.studio },
{ id: "awards", label: t.nav.awards },
{ id: "contact", label: t.nav.contact },
];
const scrollTo = (id) => {
const el = document.getElementById(id);
if (el) el.scrollIntoView({ behavior: "smooth", block: "start" });
};
return (