templates/product/analytics.twig line 1

Open in your IDE?
  1. {% set title='Analytics' %}
  2. {% set metaDescription='' %}
  3. {% set ogImage=asset('/img/landing2/product/i-ARIntell.jpg') %}
  4. {% set productPage=true %}
  5. {% set canonicalUrl=url('analytics') %}
  6. {% extends "parent.twig" %}
  7. {% block content %}
  8.     <!-- Introduction -->
  9.     <section class="product-hero">
  10.         <div class="container">
  11.             <div class="content">
  12.                 <div class="icon">
  13.                     <img src="{{ asset('/img/landing2/product/i-ARIntell.jpg') }}" alt="Analytics" />
  14.                     <h1 class="title">Analytics</h1>
  15.                 </div>
  16.                 <h2 class="subtitle">Reporting &amp; analytics for a complete A/R snapshot and forecast.</h2>
  17.                 <p>Managing A/R starts with measuring it. But as your business grows, so do your unique requirements for understanding what’s happening—and what will happen—across the entire invoice-to-cash lifecycle. That’s why Invoiced offers powerful reporting on everything finance, treasury and A/R teams need to know about the current state and future of A/R performance.</p>
  18.             </div>
  19.             <div class="product-image">
  20.                 <img src="{{ asset('/img/landing2/product/forecasting.png') }}" alt="Invoiced A/R Analytics" />
  21.             </div>
  22.         </div>
  23.     </section>
  24.     <section class="product-features">
  25.         <div class="container">
  26.             <div class="row">
  27.                 <div class="col-sm-6">
  28.                     <h3>Pre-Built Reports</h3>
  29.                     <p>Invoiced lets you know everything that’s happening at both a summary dashboard level as well as offering dozens of specialized, included reports on overall A/R performance, collections, payments and sales.</p>
  30.                 </div>
  31.                 <div class="col-sm-6">
  32.                     <img class="product-view illustration" src="{{ asset('/img/landing2/product/reportsHero.png') }}" alt="Standard A/R reports" />
  33.                 </div>
  34.             </div>
  35.             <hr>
  36.             <div class="row reversed">
  37.                 <div class="col-sm-6">
  38.                     <h3>Cash Collection Forecasting</h3>
  39.                     <p>With all the data Invoiced gathers on invoices, autopay, payment plans, promises-to-pay and customer payment history, we’re able to deliver high accuracy forecasting on when you’ll receive payments.</p>
  40.                 </div>
  41.                 <div class="col-sm-6">
  42.                     <img class="product-view illustration" src="{{ asset('/img/landing2/product/reports.png') }}" alt="forecast illustration" />
  43.                 </div>
  44.             </div>
  45.             <hr>
  46.             <div class="row">
  47.                 <div class="col-sm-6">
  48.                     <h3>Advanced Reporting</h3>
  49.                     <p>With our optional Advanced Reporting add-on, your team can create and save virtually limitless custom reports based on hundreds of object and field types and even write custom queries to answer your most burning A/R performance questions.</p>
  50.                 </div>
  51.                 <div class="col-sm-6">
  52.                     <img class="product-view illustration" src="{{ asset('/img/landing2/product/advancedRep.png') }}" alt="customization illustration" />
  53.                 </div>
  54.             </div>
  55.             <hr>
  56.             <div class="row reversed">
  57.                 <div class="col-sm-6">
  58.                     <h3>Multi-Entity Reporting</h3>
  59.                     <p>For businesses with multiple entities, subsidiaries or regions, it isn’t always easy to understand what’s happening at both the full company level AND the individual business unit level. That’s why Invoiced offers multi-entity filtering and aggregation options for generating reports.</p>
  60.                 </div>
  61.                 <div class="col-sm-6">
  62.                     <img class="product-view illustration" src="{{ asset('/img/landing2/product/multiEntRep-bldg-02.png') }}" alt="multi-entity illustration" />
  63.                 </div>
  64.             </div>
  65.             <hr>
  66.         </div>
  67.     </section>
  68.     <div class="container">
  69.         <div class="row badges new-badges">
  70.             {% for i in range(0, 9) %}
  71.                 <div class="single-icon">
  72.                     <img src="{{ asset(badges[i].img) }}" alt="{{ badges[i].name }} Badge" title="{{ badges[i].name }}" />
  73.                 </div>
  74.             {% endfor %}
  75.         </div>
  76.         <div class="row">
  77.             <div class="col-xs-12 compliant">
  78.                 <img src="{{ asset('/img/landing2/PCIbadge.png') }}" alt="PCI-DSS Compliant Badge" />
  79.             </div>
  80.         </div>
  81.     </div>
  82.     <!-- Call to Action -->
  83.     <section class="call-to-action-dark">
  84.         <div class="container">
  85.             <h2>Get paid faster</h2>
  86.             <p>Interested in learning how to automate your company's invoice-to-cash cycle?</p>
  87.             <div class="buttons">
  88.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="Product (Analytics)">
  89.                     Schedule a Demo
  90.                 </a>
  91.             </div>
  92.         </div>
  93.     </section>
  94. {% endblock %}