/* global React, AgentOpsDiagram */ const { useState: useState_h, useEffect: useEffect_h } = React; /* ============================================================ HOME PAGE ============================================================ */ function Hero({ variant }) { if (variant === "manifesto") return ; if (variant === "split") return ; return ; } function HeroDiagram() { return (
AGENT OPS BLUEPRINT · A KODIA NEXT SERVICE

New workflows. New agents.
New operating models.

kodia designs the operating model where humans, agents, and systems actually work together — then we ship the first agents into production. No more random tools and chaos.

Now booking Q3 2026 8-week engagement Nearshore LATAM team
); } function HeroManifesto() { return (
AgentOps Blueprint · A kodia next service

Most companies are buying AI tools.
The leaders are redesigning how work flows.

We design the operating model — humans, agents, and software — then ship the first agents that actually run your business. 90 days. One workflow at a time.

); } function HeroSplit() { return (
AgentOps Blueprint

Design how your business runs with humans, agents, and systemstogether.

We don't sell AI tools. We design the operating model around them, then ship the first agents into production. 8 weeks. One workflow at a time.

); } function ProblemSection() { const items = [ { num: "01", quote: "We bought five AI subscriptions last year. I don't think anyone uses three of them.", attrib: "COO, 80-person services firm" }, { num: "02", quote: "Every team is running their own ChatGPT experiment. Nobody can tell me what's actually in production.", attrib: "Founder, fintech SMB" }, { num: "03", quote: "The AI does the easy 70%. The last 30% — the integrations, the approvals, the edge cases — that's where we get stuck.", attrib: "Head of Ops, logistics company" }]; return (
The problem

AI without an operating model is just expensive chaos.

The bottleneck isn't the model. It's the workflow. Owners and operators are drowning in tools without a clear picture of who does what — humans, agents, or systems — and how the work actually moves between them.

{items.map((item, i) =>
{item.num}
"{item.quote}"
— {item.attrib}
)}
); } function OfferingSection() { const rows = [ { n: "01", title: "Workflow Map", desc: "We map your top 3 workflows end-to-end: handoffs, tools, decisions, edge cases. Where humans add judgment, where they're stuck on rework.", tag: "Week 1–2" }, { n: "02", title: "Agent Catalog", desc: "Which jobs are agent-ready today, which need humans in the loop, which need redesign first. Scored by ROI and risk.", tag: "Week 2" }, { n: "03", title: "Human + Agent Org Chart", desc: "A revised operating model. Who owns what. Where agents report into humans. How escalations and audits work.", tag: "Week 3" }, { n: "04", title: "First Agent in Production", desc: "We build, ship, and operate the highest-ROI agent from the catalog. Real integrations. Real users. Real reliability.", tag: "Week 3–7" }, { n: "05", title: "Handoff & Operate", desc: "Your team owns it from here — or we run it as a managed service. Either way, you´re ready to scale.", tag: "Week 8+" }]; return (
What's inside the blueprint

Four artifacts.
Eight weeks.
One agent shipped.

The AgentOps Blueprint isn't a slide deck or an audit report. It's the operating model your team will actually use — plus a working agent in production by the time we hand it over.

{rows.map((r) =>
{r.n}
{r.title}
{r.desc}
{r.tag}
)}
); } function DeliverablesSection() { const items = [ { icon: , name: "Workflow map", desc: "Every handoff, decision, and edge case in your top workflows — drawn so anyone on your team can read it." }, { icon: , name: "Agent catalog", desc: "A scored list of every job an agent could do at your company — ranked by ROI, risk, and readiness." }, { icon: , name: "Human + agent org chart", desc: "Your new operating model. Who owns what. How escalations work. Where the humans are irreplaceable." }, { icon: , name: "First agent, in production", desc: "Not a prototype. A real agent doing real work with real integrations — by week 7 at the latest." }]; return (
What you walk away with

Four artifacts your team can actually use.

{items.map((it, i) =>
{it.icon}
{it.name}
{it.desc}
)}
); } function ProofSection() { return (
Receipts · kodia solutions
"What started as a simple automation tool grew into a powerful business platform — built to evolve."
Clearpay × kodia · Merchant services
~0
Manual hours/month on commission reconciliation
100%
Sales rep visibility into earnings via self-service
3
Live integrations: payments, accounting, reporting
5+
Years of compounding partnership (and counting)
); } function CTASection() { return (
Ready when you are

What would your business look like if it ran itself — properly?

A 30-minute discovery call. We map one of your workflows together, live. You leave with a one-page sketch and a sense of what's actually possible. No deck, no pitch.

Book a discovery call
); } /* Hero variant — listens to tweaks event */ function HomeApp() { const [variant, setVariant] = useState_h(window.PAGE_TWEAK_DEFAULTS.heroVariant || "diagram"); useEffect_h(() => { const onTweak = (e) => setVariant(e.detail.heroVariant || "diagram"); window.addEventListener("kodia:tweaks", onTweak); return () => window.removeEventListener("kodia:tweaks", onTweak); }, []); return ( ); } window.HomeApp = HomeApp;