templates/solutions.twig line 1

Open in your IDE?
  1. {% set title='A/R Automation, Tailored to Your Industry' %}
  2. {% set metaDescription='Invoiced offers an industry-tailored online invoice generator software for legal, healthcare, agencies, insurance, technology, utilities, and more.' %}
  3. {% set solutionsPage=true %}
  4. {% set canonicalUrl=url('solutions') %}
  5. {% extends "parent.twig" %}
  6. {% block content %}
  7.     <section class="solution-sections">
  8.         <div class="container">
  9.             <h1 class="title">Solutions</h1>
  10.             <h2 class="subtitle">Industry-tailored billing solutions</h2>
  11.             <h3>Our cloud based accounts receivable management system gets your business paid faster and
  12.                 with less effort—regardless of your industry.</h3>
  13.             <div class="solution-tiles clearfix">
  14.                 <a href="{{ path('solution_agencies') }}" class="tile">
  15.                     <h3>Business &amp; Professional Services</h3>
  16.                     <div class="description">Automate your billing processes and focus on your #1 priority: Clients</div>
  17.                     <div class="learn-more">Learn more &rarr;</div>
  18.                 </a>
  19.                 <a href="{{ path('solution_technology') }}" class="tile">
  20.                     <h3>SaaS &amp; Technology</h3>
  21.                     <div class="description">Whether you’re a global software brand or a startup, Invoiced can accelerate your accounts receivable.</div>
  22.                     <div class="learn-more">Learn more &rarr;</div>
  23.                 </a>
  24.             </div>
  25.         </div>
  26.     </section>
  27.     <!-- Call to Action -->
  28.     <section class="call-to-action-dark">
  29.         <div class="container">
  30.             <h2>Get paid faster</h2>
  31.             <p>Interested in learning how to put your billing on autopilot?</p>
  32.             <div class="buttons">
  33.                 <a href="{{ path('schedule_demo') }}" class="btn btn-lg btn-coral request-demo" data-label="Solutions">
  34.                     Schedule a Demo
  35.                 </a>
  36.             </div>
  37.         </div>
  38.     </section>
  39. {% endblock %}