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

Open in your IDE?
  1. {% include '@Application/inc/central_header.html.twig' %}
  2. {% include '@HoneybeeWeb/inc/_web_design_system.html.twig' %}
  3. {% include '@HoneybeeWeb/inc/_hb360_tags.html.twig' %}
  4. <style>
  5. .hbs-wrap { max-width: 900px; margin: 0 auto; padding: 0 28px; }
  6. .hbs-hero { background: var(--n-cream); padding: 120px 0 32px; }
  7. .hbs-card { background: var(--n-white); border: 1px solid var(--n-border-md); border-radius: var(--n-radius); padding: 26px; box-shadow: var(--n-shadow-sm); }
  8. </style>
  9. <section class="hbs-hero">
  10.     <div class="hbs-wrap">
  11.         <div class="n-label">HoneyBee 360 · Shared feasibility estimate <span class="hb360-tag hb360-tag-assumed">read-only</span></div>
  12.         <h1 style="font-family:'Montserrat',sans-serif;font-size:clamp(1.7rem,3.5vw,2.4rem);font-weight:900;color:var(--n-dark);letter-spacing:-.025em;line-height:1.1;margin:0 0 10px">
  13.             {{ project.title ?: 'Solar feasibility estimate' }}
  14.         </h1>
  15.         <p class="n-body" style="margin:0;font-size:14px;color:var(--n-muted)">Shared {{ project.updatedAt|date('d M Y') }}{% if project.address %} · 📍 {{ project.address }}{% endif %}</p>
  16.     </div>
  17. </section>
  18. <section style="background:var(--n-cream);padding:8px 0 100px">
  19.     <div class="hbs-wrap">
  20.         <div class="hbs-card">
  21.             {% include '@HoneybeeWeb/inc/_hb360_report_body.html.twig' with {'estimate': estimate, 'report': report, 'project': project} %}
  22.             <div style="display:flex;flex-wrap:wrap;gap:10px;margin-top:20px">
  23.                 <a href="{{ url('honeybee_tool', {'slug': 'rooftop-estimate'}) }}" class="n-btn n-btn-amber">Get an estimate for YOUR site <i class="fa-solid fa-bolt"></i></a>
  24.                 <a href="{{ url('honeybee_contact') }}" class="n-btn n-btn-outline">Talk to HoneyBee</a>
  25.             </div>
  26.         </div>
  27.     </div>
  28. </section>
  29. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}