mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
108 lines
4.1 KiB
PHP
Executable File
108 lines
4.1 KiB
PHP
Executable File
@extends('public.header')
|
||
|
||
@section('content')
|
||
|
||
|
||
|
||
<section class="hero background hero1 center" data-speed="2" data-type="background">
|
||
<div class="caption-side"></div>
|
||
|
||
<div class="container">
|
||
|
||
<div class="container">
|
||
<div class="row" style="margin:0;">
|
||
<div class="caption-wrap">
|
||
<div class="caption">
|
||
<h1>THE <span style="color:#2299c0">SIMPLE</span> &
|
||
<span style="color:#edd71e">FREE</span> WAY TO INVOICE
|
||
CLIENTS</h1>
|
||
<p>It's just that easy. Stop spending time on
|
||
complicated and expensive invoicing.<br>
|
||
No fuss, just get started and <span style=
|
||
"color:#2299c0">get paid.</span></p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="col-md-3 center-block">
|
||
<a href="#">
|
||
<div class="cta">
|
||
<h2 id="startButton" onclick="return getStarted()">Invoice Now <span>+</span></h2>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
</section>
|
||
|
||
<section class="features-splash">
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="col-md-3 one">
|
||
<div class="box">
|
||
<div class="icon free"><span class="img-wrap"><img src="{{ asset('images/icon-free.png') }}"></span></div>
|
||
<h2>Free, Always</h2>
|
||
<p>Invoicing with no monthly fee, because you have enough bills already! Free, now and forever! Quality invoicing to build your business and get paid.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-md-3 two">
|
||
<div class="box">
|
||
<div class="icon open"><span class="img-wrap"><img src="{{ asset('images/icon-opensource.png') }}"></span></div>
|
||
<h2>Open-Source</h2>
|
||
<p>Cloud-based, super secure, and user-developed. Open source platforms are a better way to do business (and save the world). Need we say more?</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-md-3 three">
|
||
<div class="box">
|
||
<div class="icon pdf"><span class="img-wrap"><img src="{{ asset('images/icon-pdf.png') }}"></span></div>
|
||
<h2>Live .PDF View</h2>
|
||
<p>Create beautiful email-ready .PDF invoices created instantly as you type. Our ‘Save & send’ feature saves you time and impresses clients.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-md-3 four">
|
||
<div class="box">
|
||
<div class="icon pay"><span class="img-wrap"><img src="{{ asset('images/icon-payment.png') }}"></span></div>
|
||
<h2>Online Payments</h2>
|
||
<p>PayPal? Authorize.Net? Stripe? We support many payment technologies and if you need help or advice we’ll lend a hand (we’re pretty friendly).</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="blue">
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="col-md-5">
|
||
<h1><span>Simple, Intuitive Invoicing,</span>AnyWHERE.</h1>
|
||
<div class="row">
|
||
<div class="col-md-7">
|
||
<a href="#">
|
||
<div class="cta">
|
||
<h2 onclick="return getStarted()">Invoice Now <span>+</span></h2>
|
||
</div>
|
||
</a>
|
||
|
||
</div>
|
||
</div>
|
||
<!-- <p>or {{ link_to('features', 'View Our Features' ) }}</a></p> -->
|
||
<p><i>No signup needed</i></p>
|
||
</div>
|
||
<div class="col-md-7">
|
||
<img src="{{ asset('images/devices.png') }}">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
|
||
@stop
|