// ─── SENES MEDIA · Services page (Designova layout) ─────────────── function ServicesPage({ navigate }) { const d = window.SENES_DATA; return (
We Design · We Code · We Communicate · We Influence

What we
do.

From identity systems to web applications to media production — five disciplines, run by one team, scoped to outcomes.

Graphic Design

Logos, identities, corporate profiles, social media, print collateral.

Web & Apps

Modern marketing sites, e-commerce, custom systems, dashboards.

Media Production

Promo, documentary, social campaigns, brand storytelling on video.

{/* Services list */}
OFFERING · 02

Five lines.

Hover a row
to inspect
{d.services.map((s) => (
{s.num} / 05
{s.name}
{s.blurb}
{s.deliverables.map((d) =>
— {d}
)}
))}
{/* Process */}
METHOD · 03

How a project runs.

5 phases
{d.process.map((p) => (
{p.num}
{p.name}
{p.blurb}
))}
{/* Pricing models */}
SHAPES · 04

Three ways to work.

Pick the one that fits
{[ { num: "01", title: "Project", price: "1 Week", subtitle: "Defined scope, focused delivery", points: ["Single focused deliverable", "One structured revision round", "Frozen master file at hand-off", "Post-launch support"] }, { num: "02", title: "Retainer", price: "2 Weeks", subtitle: "Ongoing partnership", points: ["Two-week working cycles", "Design crit + execution", "Async + weekly sync", "Priority turnaround"], featured: true }, { num: "03", title: "Sprint", price: "3 Weeks", subtitle: "Deep, intensive build", points: ["Audit + recommendations", "Concept + 3 directions", "Strategy doc", "Hand-off to your team"] }, ].map((p) => (
— {p.num}
{p.title}
{p.price}
{p.subtitle}
    {p.points.map((pt) =>
  • {pt}
  • )}
))}
); } // ─── FAQ accordion ─────────────────────────────────────────── function FAQ({ items }) { const [open, setOpen] = React.useState(0); return (
{items.map((it, i) => (
{it.a}
))}
); } Object.assign(window, { ServicesPage, FAQ });