src/ApplicationBundle/Modules/HoneybeeWeb/Resources/views/pages/agents.html.twig line 1

Open in your IDE?
  1. {% include '@Application/inc/central_header.html.twig' %}
  2. {% include '@HoneybeeWeb/pages/inc/pp_style.html.twig' %}
  3. {# WEB-2 §19 — /agents. Pricing ABOVE the fold; the agents GROUPED by business outcome,
  4.    not sixteen equal cards. ONE primary CTA (§28): Explore Agent Setup. Every agent
  5.    drafts/chases/checks — humans approve risk; money never moves automatically. #}
  6. {% set p = prices %}
  7. <div class="pp-wrap">
  8.     <div class="pp-hero">
  9.         <span class="kicker">AI Agents</span>
  10.         <h1>Build your digital workforce.</h1>
  11.         <p class="sub">Agents work inside your HoneyBee data around the clock — drafting, chasing
  12.             and checking the routine work your team does by hand. Organization-level pricing:
  13.             every user benefits, nobody needs a seat.</p>
  14.         <div class="pp-grid c3" style="max-width:760px;margin:28px auto 0;">
  15.             <div class="pp-card"><span class="pp-chip">Starter</span>
  16.                 <div class="pp-price">€{{ p.agents.starter }}<small> /org/month</small></div>
  17.                 <p style="margin-top:6px;">Any 4 agents</p></div>
  18.             <div class="pp-card" style="border-color:var(--n-amber);"><span class="pp-chip">Growth</span>
  19.                 <div class="pp-price">€{{ p.agents.growth }}<small> /org/month</small></div>
  20.                 <p style="margin-top:6px;">Any 8 agents</p></div>
  21.             <div class="pp-card"><span class="pp-chip">Complete</span>
  22.                 <div class="pp-price">€{{ p.agents.complete }}<small> /org/month</small></div>
  23.                 <p style="margin-top:6px;">All 16 agents</p></div>
  24.         </div>
  25.         <a class="pp-cta" href="#request">Explore Agent Setup</a>
  26.         <a class="pp-cta-ghost" href="#groups">Explore the 16 Agents</a>
  27.     </div>
  28.     <div class="pp-sec" id="groups">
  29.         <h2>Grouped by the outcome they own</h2>
  30.         <p class="sec-sub">Pick agents by the problem, not by the buzzword. Every agent follows the
  31.             same law: it drafts and chases — a human approves anything with consequences.</p>
  32.         <div class="pp-grid c4">
  33.             <div class="pp-card"><h3>Finance</h3><ul>
  34.                 <li>Chases overdue invoices &amp; drafts dunning</li>
  35.                 <li>Watches cash position &amp; payment dues</li></ul></div>
  36.             <div class="pp-card"><h3>Sales</h3><ul>
  37.                 <li>Captures leads from messages</li>
  38.                 <li>Drafts follow-ups before deals go quiet</li></ul></div>
  39.             <div class="pp-card"><h3>Projects</h3><ul>
  40.                 <li>Intake, progress &amp; handover checks</li>
  41.                 <li>Flags budget vs actual drift</li></ul></div>
  42.             <div class="pp-card"><h3>HR</h3><ul>
  43.                 <li>Attendance &amp; leave housekeeping</li>
  44.                 <li>Onboarding checklists chased to done</li></ul></div>
  45.             <div class="pp-card"><h3>Procurement</h3><ul>
  46.                 <li>Three-way match on PO/GRN/invoice</li>
  47.                 <li>RFQ &amp; requisition follow-through</li></ul></div>
  48.             <div class="pp-card"><h3>Reporting</h3><ul>
  49.                 <li>Daily briefings &amp; role reports</li>
  50.                 <li>Month-end packs assembled from rows</li></ul></div>
  51.             <div class="pp-card"><h3>Operations</h3><ul>
  52.                 <li>Stock positions &amp; reorder signals</li>
  53.                 <li>Site &amp; energy anomaly watch</li></ul></div>
  54.             <div class="pp-card"><h3>Customer service</h3><ul>
  55.                 <li>Ticket triage &amp; drafted replies</li>
  56.                 <li>Compliance &amp; document checks</li></ul></div>
  57.         </div>
  58.     </div>
  59.     <div class="pp-sec">
  60.         <h2>The safety model</h2>
  61.         <div class="pp-grid c3">
  62.             <div class="pp-card"><h3>Human by exception</h3><p>Agents prepare; people approve.
  63.                 High-confidence routine goes through, anything risky queues for a human.</p></div>
  64.             <div class="pp-card"><h3>Money never moves alone</h3><p>No agent can pay, transfer or
  65.                 commit funds. Financial documents stop at draft until a person confirms.</p></div>
  66.             <div class="pp-card"><h3>Works without AI budget</h3><p>The workflows agents ride on are
  67.                 deterministic — if AI capacity runs out, your business keeps running.</p></div>
  68.         </div>
  69.     </div>
  70.     <div class="pp-band" id="request">
  71.         <h2>Which four agents would save your team the most hours?</h2>
  72.         <p>Tell us your bottleneck — we'll propose a starting set and set it up with you.</p>
  73.     </div>
  74.     {% include '@HoneybeeWeb/pages/inc/intent_form.html.twig' with {
  75.         'intent': 'demo', 'cta': 'Explore Agent Setup',
  76.         'extras': [
  77.             {'name': 'primary_interest', 'label': 'Primary interest', 'options': ['AI Agents', 'HiveMind AI', 'Business Suite', 'Whole ecosystem']},
  78.             {'name': 'company_size', 'label': 'Company size', 'options': ['1-10', '11-50', '51-250', '250+']}
  79.         ]
  80.     } only %}
  81. </div>
  82. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}