{% extends 'base.html.twig' %}
{% block title %}Home{% endblock %}
{% block body %}
<section class="background-colored" style="background-image:url('{{ asset('images/homepage-new.jpg') }}');">
<div id="particles-dots" class="particles">
<canvas class="particles-js-canvas-el" width="2812" height="900"
style="width: 100%; height: 100%;"></canvas>
</div>
<div class="container">
<div class="text-dark p-10" style="background-color: rgba(255,255,255,0.90);">
<h1>The Easy API</h1>
<p class="h3">Since 2010 we've developed a single API that connects and translates many APIs together
into one interface. You get access to worldwide country information, page rankings, safe browsing
URLs, U.S. zip codes, and so much more!</p>
</div>
</div>
</section>
<section class="background-secondary text-center p-t-30 p-b-30">
<div class="container">
<div class="row">
<div class="col-lg-12"><h2 class="text-light">View the documentation</h2></div>
<div class="col-lg-12">
<a href="{{ path('docs_page', {'category': 'getting-started', 'section':'introduction'}) }}"
class="btn btn-rounded btn-reveal btn-dark">
<span>Documentation</span>
<i class="icon-chevron-right"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Services -->
<section class="p-b-20">
<div class="container">
<div class="row">
<div class="col-lg-12 p-b-20">
<h2>Why The Easy API?</h2>
</div>
</div>
<div class="row">
<!-- features box -->
<div class="col-lg-4">
<img src="{{ asset('images/trustedScaledSlim.jpg') }}" class="img-fluid m-b-20">
<h4>Trusted</h4>
<p>We've been in business since 2010 and have a long history of always supporting our users. We work
with you to build an API that gives your growing applications everything it needs. Reach out
today to see what we can do to help!</p>
</div>
<!-- end: features box -->
<!-- features box -->
<div class="col-lg-4">
<img src="{{ asset('images/speedScaledSlim.jpg') }}" class="img-fluid m-b-20">
<h4>Fast Responses</h4>
<p>Our API returns responses in less than a second. That's time that your application can get a
response and keep processing.</p>
</div>
<!-- end: features box -->
<!-- features box -->
<div class="col-lg-4">
<img src="{{ asset('images/timeScaledSlim.jpg') }}" class="img-fluid m-b-20">
<h4>Saves Time</h4>
<p>We help you save time and energy implementing multiple APIs. You can get back to building your
application after you connect with our single one. We track all the requests made to enable you
to debug all API calls, making implementation even easier.</p>
</div>
<!-- end: features box -->
</div>
<!-- end features box -->
</div>
</section>
<!-- end: Services -->
{% endblock %}