// Home — high-emotion, portfolio-led
// Hero · credibility strip · category tiles · featured work teaser · BE values · client wall · CTA band
const HomeHero = () => (
Experiential event production · Dubai · since 2003
Live brief queue
Beyond local.
Globally driven .
We are a Dubai-headquartered experiential event agency producing sports,
festivals, ceremonies and brand activations across the GCC and beyond.
End-to-end — concept, build, live delivery.
Since
2003
Offices
Dubai · Riyadh · Doha
Credentials
Guinness World Record holder (collaboration, 2018)
Languages
EN · AR · (RU / ZH on request)
);
const HomeMarquee = () => {
const items = [
"Sports Management", "Brand Activation", "Festival Production", "Conference",
"Gala & Ceremony", "Product Launch", "Mall Activation", "Crowd Management",
"Motorsports", "Showrunning", "Broadcast",
];
const row = [...items, ...items];
return (
{row.map((t, i) => (
{t}
))}
);
};
const CredibilityStrip = () => (
Founded
2003 — Dubai HQ
Two decades, three offices
Citable credential
Guinness World Record
962,168 fireworks · Largest display in multiple cities · 2018 — in collaboration with GEA & Fireworks by Grucci
Regional first
FEI World Cup Finals 2024
First Middle-East edition · Riyadh
Scope
End-to-end production
Concept · build · live delivery · broadcast
);
const HomeCategories = ({ goWork }) => {
const tiles = [
{ id: "sports", label: "Sports & Motorsports", img: "media/work-fei-world-cup-finals-2024.webp", n: "01" },
{ id: "festival", label: "Festivals & Entertainment", img: "media/work-alula-azimuth-festival-2024.webp", n: "02" },
{ id: "activation", label: "Brand Activations", img: "media/work-red-bull-car-park-drift-riyadh-2024.webp", n: "03" },
{ id: "ceremony", label: "Ceremonies & Galas", img: "media/work-layali-diriyah-2025.webp", n: "04" },
{ id: "conference", label: "Conferences & Summits", img: "media/work-loreal-kick-off-2025.webp", n: "05" },
];
return (
}
/>
{tiles.map((t, i) => {
const span = i === 0 ? 8 : i === 1 ? 4 : i === 2 ? 4 : i === 3 ? 4 : 4;
return (
goWork(t.id)} style={{ display: "block", textAlign: "left", width: "100%" }}>
{t.label}
Filter the work →
);
})}
);
};
const HomeFeatured = ({ goCase }) => {
const feat = PROJECTS.filter(p => p.feature);
return (
window.go({ page: "work" })}>
All work
}
/>
{feat.map((p, i) => (
goCase(p.slug)} style={{ display: "contents", textAlign: "left" }}>
{CATEGORIES.find(c => c.id === p.category)?.label}
{p.credibility &&
{p.credibility} }
Rights status: clearance pending
{p.title}
{p.client}
{p.location}
{p.year}
))}
);
};
const HomeValues = () => (
{VALUES.map((v, i) => (
{v.desc}
))}
);
const HomeClients = () => {
const placeholders = 8 - CLIENTS_PERMITTED.length;
return (
{CLIENTS_PERMITTED.map(c => (
))}
{Array.from({ length: placeholders }).map((_, i) => (
Logo pending clearance
))}
+ 40 more permitted on request · Confirmed partners: Red Bull · NEOM · AlUla · Diriyah · FIFA Club World Cup 2023 · GEA · Saudi Ministry of Tourism · Mastercard · BMW · Nissan · Ford · Lenovo · ADSC
);
};
const HomeCTA = () => (
Working on an RFP?
Let's get on a brief call.
);
const Home = ({ go }) => (
go({ page: "work", filter: cat })} />
go({ page: "case", slug })} />
);
Object.assign(window, { Home });