// ─── SENES MEDIA · Work page (Designova layout) ─────────────────── function WorkPage({ navigate, layout, openProject }) { const d = window.SENES_DATA; const [filter, setFilter] = React.useState("all"); const filtered = filter === "all" ? d.projects : d.projects.filter(p => p.category.toLowerCase().includes(filter)); const categories = ["all", "brand", "web", "packaging", "identity"]; return (
{/* ── Designova-style hero ── */}
13 Selected Projects · 2023 — 2025

Work that earns
its second life.

A curated archive of recent engagements across web, brand, and packaging — spanning Malawi, South Africa, Namibia, and the UK.

Creative Thinking

We believe creativity is the foundation of great communication. Every project begins with understanding your vision and transforming it into a meaningful concept.

Strategic Development

Our team combines creative thinking with digital expertise to build solutions that are not only visually impressive but also effective and practical.

Innovation

We continuously explore new technologies and creative techniques to ensure our clients stay ahead in a rapidly evolving digital environment.

{/* ── Filter row ── */}
FILTER · BY DISCIPLINE
{categories.map(c => ( ))}
{/* ── Work grid ── */}
); } Object.assign(window, { WorkPage });