src/ApplicationBundle/Modules/HoneybeeWeb/Resources/views/pages/honeycore_ems.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 §22 — /honeycore/ems. Four tiers by ENERGY ENDPOINTS from the store; engineering
  4.    quoted separately. ONE primary CTA (§28): Request EMS Assessment. #}
  5. {% set p = prices %}
  6. <div class="pp-wrap">
  7.     <div class="pp-hero">
  8.         <span class="kicker">HoneyCore EMS</span>
  9.         <h1>Turn site energy data into operational decisions.</h1>
  10.         <p class="sub">Meters, sensors, inverters and machines feed one live energy picture —
  11.             consumption, generation, alarms and reports your operations team actually acts on.
  12.             Tiered by energy endpoints, so a small site pays a small price.</p>
  13.         <a class="pp-cta" href="#request">Request EMS Assessment</a>
  14.     </div>
  15.     <div class="pp-sec">
  16.         <h2>Pricing — per site/month, by energy endpoints</h2>
  17.         <div class="pp-grid c4">
  18.             <div class="pp-card"><span class="pp-chip">Insight</span>
  19.                 <div class="pp-price">€{{ p.ems.insight }}</div>
  20.                 <p style="margin-top:6px;">Up to {{ p.ems.endpoints.insight }} endpoints —
  21.                     monitoring, dashboards, alarms.</p></div>
  22.             <div class="pp-card"><span class="pp-chip">Optimize</span>
  23.                 <div class="pp-price">€{{ p.ems.optimize }}</div>
  24.                 <p style="margin-top:6px;">Up to {{ p.ems.endpoints.optimize }} endpoints —
  25.                     plus targets, KPIs and reporting.</p></div>
  26.             <div class="pp-card"><span class="pp-chip">Autonomous</span>
  27.                 <div class="pp-price">€{{ p.ems.autonomous }}</div>
  28.                 <p style="margin-top:6px;">Up to {{ p.ems.endpoints.autonomous }} endpoints —
  29.                     plus automated control actions.</p></div>
  30.             <div class="pp-card"><span class="pp-chip">Enterprise</span>
  31.                 <div class="pp-price">from €{{ p.ems.enterprise_from }}</div>
  32.                 <p style="margin-top:6px;">Beyond {{ p.ems.endpoints.autonomous }} endpoints,
  33.                     multi-site fleets — scoped with you.</p></div>
  34.         </div>
  35.         <p class="pp-note">An energy endpoint is a metered or controlled device — a meter, inverter,
  36.             genset controller or sensor group. Site engineering and integration are quoted separately.</p>
  37.     </div>
  38.     <div class="pp-sec">
  39.         <h2>What operations gets out of it</h2>
  40.         <div class="pp-grid c3">
  41.             <div class="pp-card"><h3>One energy truth</h3><p>Generation, consumption and cost in one
  42.                 place — no more stitching CSV exports from three portals.</p></div>
  43.             <div class="pp-card"><h3>Alarms that matter</h3><p>Deviation and downtime alerts routed
  44.                 to the person who can act, with the context to act fast.</p></div>
  45.             <div class="pp-card"><h3>Reports that write themselves</h3><p>Daily, monthly and
  46.                 per-asset reports generated from metered data — and, with HoneyBee ERP, energy
  47.                 figures that land directly in your business reporting.</p></div>
  48.         </div>
  49.     </div>
  50.     <div class="pp-sec">
  51.         <h2>Runs on HoneyCore 4.0</h2>
  52.         <p class="sec-sub">EMS is an application on the same controller that runs
  53.             <a href="{{ url('honeybee_honeycore_hybrid') }}" style="color:var(--n-amber);font-weight:700;">Hybrid Control</a> and
  54.             <a href="{{ url('honeybee_honeycore_bms') }}" style="color:var(--n-amber);font-weight:700;">BMS</a> —
  55.             one hardware install, applications switched on as you need them.</p>
  56.     </div>
  57.     <div class="pp-band" id="request">
  58.         <h2>Get an EMS assessment for your site.</h2>
  59.         <p>Tell us what's on site — the assessment maps endpoints, tier and integration effort.</p>
  60.     </div>
  61.     {% include '@HoneybeeWeb/pages/inc/intent_form.html.twig' with {
  62.         'intent': 'ems', 'cta': 'Request EMS Assessment',
  63.         'extras': [
  64.             {'name': 'project_type', 'label': 'Site type', 'options': ['Factory', 'Commercial building', 'Solar plant', 'Campus / estate', 'Multi-site fleet', 'Other']},
  65.             {'name': 'capacity', 'label': 'Site size / rough endpoint count'},
  66.             {'name': 'stage', 'label': 'Stage', 'options': ['Exploring', 'Budgeting', 'Ready to deploy']}
  67.         ]
  68.     } only %}
  69. </div>
  70. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}