1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/views/public/splash.blade.php

112 lines
3.8 KiB
PHP
Raw Normal View History

2014-03-20 23:12:07 +01:00
@extends('public.header')
@section('content')
2014-04-28 00:07:45 +02:00
2014-03-20 23:12:07 +01:00
2014-03-31 17:06:44 +02:00
<section class="hero background hero1" data-speed="2" data-type="background">
2014-03-20 23:12:07 +01:00
<div class="caption-side"></div>
<div class="container">
<div class="row" style="margin:0;">
<div class="caption-wrap">
<div class="caption">
<h1>THE <span style="color:#2299c0">SIMPLE</span> &amp;
<span style="color:#edd71e">FREE</span> WAY TO INVOICE
CLIENTS</h1>
<p>It's 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">
2014-03-23 16:49:14 +01:00
<h2 id="startButton" onclick="return getStarted()">Invoice Now <span>+</span></h2>
2014-03-20 23:12:07 +01:00
</div>
</a>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<div class="row">
<div class="col-md-3 one">
<div class="box">
2014-03-23 21:56:19 +01:00
<div class="icon"><img src="{{ asset('images/icon-free.png') }}"></div>
2014-04-25 15:04:57 +02:00
<h2>FREE, ALWAYS</h2>
2014-03-20 23:12:07 +01:00
<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">
2014-03-23 21:56:19 +01:00
<div class="icon"><img src="{{ asset('images/icon-opensource.png') }}"></div>
2014-03-20 23:12:07 +01:00
<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">
2014-03-23 21:56:19 +01:00
<div class="icon"><img src="{{ asset('images/icon-pdf.png') }}"></div>
2014-03-20 23:12:07 +01:00
<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">
2014-03-23 21:56:19 +01:00
<div class="icon"><img src="{{ asset('images/icon-payment.png') }}"></div>
2014-03-20 23:12:07 +01:00
<h2>ONLINE PAYMENTS</h2>
<p>PayPal? Authorize.Net? Stripe? We support many payment technologies and if you need help or advice well lend a hand (were pretty friendly).</p>
</div>
</div>
</div>
</div>
</section>
<section class="blue">
<div class="container">
<div class="row">
<div class="col-md-6">
<!--<h1>2.500 <span>sent invoices</span></h1>-->
</div>
<div class="col-md-6">
<!--<h1>$350.456 <span>billed</span></h1>-->
</div>
</div>
</div>
</section>
<section class="hero2">
<div class="container">
<div class="caption">
<h1>SIMPLE, INTUITIVE INVOICING.</h1>
</div>
</div>
</section>
<section class="upper-footer">
<div class="container">
<div class="row">
<div class="col-md-3 center-block">
<a href="#">
<div class="cta">
2014-03-23 16:49:14 +01:00
<h2 onclick="return getStarted()">Invoice Now <span>+</span></h2>
2014-03-20 23:12:07 +01:00
</div>
</a>
</div>
</div>
</div>
</section>
@stop