templates/features/estimates.twig line 1

Open in your IDE?
  1. {% set title='Invoice Estimate Generation Software' %}
  2. {% set metaDescription='Easily create quotes and estimates that can be approved and converted into bills.' %}
  3. {% set productPage=true %}
  4. {% set canonicalUrl=url('product_estimates') %}
  5. {% extends "parent.twig" %}
  6. {% block content %}
  7.     <!-- Introduction -->
  8.     <section class="product-hero">
  9.         <div class="container">
  10.             <div class="content">
  11.                 <h1 class="title">Quote-to-Cash</h1>
  12.                 <h2 class="subtitle">Get buy-in and deposits up front.</h2>
  13.                 <p>Sometimes customers want to know what the invoice is going to look like before they’ll agree to move forward. That’s why estimates on Invoiced let you create detailed quotes, capture approvals and collect up-front deposits.</p>
  14.                 <p>Once the customer gets a look and gets any questions answered they can digitally approve the estimate and pay the deposit. With one click you can convert the remaining balance into a shiny new invoice.</p>
  15.             </div>
  16.             <div class="product-image">
  17.                 <img src="{{ asset('/img/landing2/product/customer-portal.jpg') }}" alt="Invoice Online" />
  18.             </div>
  19.         </div>
  20.     </section>
  21.     <!-- Features / Benefits -->
  22.     <section class="product-features">
  23.         <div class="container">
  24.             <div class="row">
  25.                 <div class="col-sm-6">
  26.                     <h3>Pre-Invoice</h3>
  27.                     <p>Because our estimates format is based on our invoice format, it’s easy to include all the quote details that will ultimately show up in the invoice. That’s important because it keeps you and your customer aligned and minimizes the potential for sticker shock.</p>
  28.                 </div>
  29.                 <div class="col-sm-6">
  30.                     <h3>Built In Approvals</h3>
  31.                     <p>With a click you can send the estimate right to your customer. They can then review the estimate, ask questions, approve the estimate.</p>
  32.                 </div>
  33.             </div>
  34.             <div class="row">
  35.                 <div class="col-sm-6">
  36.                     <h3>Prepayment Collection</h3>
  37.                     <p>Want to collect a deposit at the time the estimate is approved? No problem. Want to require enrollment in AutoPay or up front payment? Our app has those options covered too. Getting ahead of your customers’ due dates is just one of the many ways we help you get paid faster.</p>
  38.                 </div>
  39.                 <div class="col-sm-6">
  40.                     <h3>One-Click Invoice Conversion</h3>
  41.                     <p>Once the estimate is digitally approved by the customer and any required deposits paid you’ll be notified and will be able to see the approved estimate in your Invoiced dashboard. There you can instantly convert it into an invoice with one click.</p>
  42.                 </div>
  43.             </div>
  44.         </div>
  45.     </section>
  46.     <div class="container">
  47.         <div class="row badges new-badges">
  48.             {% for i in range(0, 9) %}
  49.                 <div class="single-icon">
  50.                     <img src="{{ asset(badges[i].img) }}" alt="{{ badges[i].name }} Badge" title="{{ badges[i].name }}" />
  51.                 </div>
  52.             {% endfor %}
  53.         </div>
  54.         <div class="row">
  55.             <div class="col-xs-12 compliant">
  56.                 <img src="{{ asset('/img/landing2/PCIbadge.png') }}" alt="PCI-DSS Compliant Badge" />
  57.             </div>
  58.         </div>
  59.     </div>
  60.     <!-- Testimonials -->
  61.     <section class="product-testimonials no-border">
  62.         <div class="container">
  63.             <h4>Don’t Take Our Word For It</h4>
  64.             <h2>Here are some real-life examples from successful Invoiced clients:</h2>
  65.             <div class="row">
  66.                 <div class="col-sm-5">
  67.                     <div class="quote">
  68.                         <div class="quote-icon"></div>
  69.                         <div class="content">
  70.                             We frequently generate quotes for developing a jacket or a pair of pants, and can pull <span class="highlight">directly from the catalog</span> into an estimate for the customer”
  71.                         </div>
  72.                         <div class="from">
  73.                             – Eliav Meltzer, Amy & Eliav
  74.                         </div>
  75.                     </div>
  76.                 </div>
  77.                 <div class="col-sm-7">
  78.                     <div class="quote">
  79.                         <div class="quote-icon"></div>
  80.                         <div class="content">
  81.                             I can see the dollar value of estimates I’ve sent out in the last 3 months, 6 months, <span class="highlight">or any other time period I choose</span>.”
  82.                         </div>
  83.                         <div class="from">
  84.                             – Ryan Louthan, Blue Diamond Painting
  85.                         </div>
  86.                     </div>
  87.                     <div class="quote">
  88.                         <div class="quote-icon"></div>
  89.                         <div class="content">
  90.                             It's a nice, <span class="highlight">efficient</span> process in one place"
  91.                         </div>
  92.                         <div class="from">
  93.                             – Marcy Rye, Wire Media
  94.                         </div>
  95.                     </div>
  96.                 </div>
  97.             </div>
  98.         </div>
  99.     </section>
  100.     <section class="customer-testimonials">
  101.         <div class="container">
  102.             <h4>We put our customers first.</h4>
  103.             <h2>That's why thousands of businesses &#9829; Invoiced.</h2>
  104.             <div class="customer-logos clearfix">
  105.                 {% for i in range(0, 11) %}
  106.                     <div class="customer-logo">
  107.                         <img src="{{ asset(logos[i].img) }}" alt="{{ logos[i].name }} Logo" title="{{ logos[i].name }}" />
  108.                     </div>
  109.                 {% endfor %}
  110.             </div>
  111.         </div>
  112.     </section>
  113.     <!-- Next Page -->
  114.     <section class="continue-tour">
  115.         <a href="{{ path('product_integrations') }}">
  116.             <div class="container">
  117.                 <div class="headline">Continue the Tour</div>
  118.                 <div class="link">
  119.                     Integrations
  120.                     &rarr;
  121.                 </div>
  122.             </div>
  123.         </a>
  124.     </section>
  125.     <!-- Call to Action -->
  126.     <section class="call-to-action-dark">
  127.         <div class="container">
  128.             <h2>Get paid faster</h2>
  129.             <p>Interested in learning how to automate your company's invoice-to-cash cycle?</p>
  130.             <div class="buttons">
  131.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="Feature (Quote-to-Cash)">
  132.                     Schedule a Demo
  133.                 </a>
  134.             </div>
  135.         </div>
  136.     </section>
  137. {% endblock %}