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

61 lines
1.7 KiB
PHP
Raw Normal View History

2014-04-24 10:46:44 +02:00
@extends('public.header')
@section('content')
2014-04-26 21:00:31 +02:00
<style>
section.body {
background-color: #f8f8f8 !important;
}
</style>
2014-04-25 15:15:13 +02:00
<section class="hero background hero3" data-speed="2" data-type="background">
<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:#ecd816"> Plans</span></h1>
</div>
</div>
</div>
</div>
</section>
2014-04-26 21:00:31 +02:00
<section class="center" style="background-color:#f8f8f8">
2014-04-25 15:15:13 +02:00
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
2014-04-26 21:00:31 +02:00
&nbsp;<p/>
2014-04-25 15:15:13 +02:00
<h2>Go Pro to Unlock Premium Invoice Ninja Features</h2>
<p>We believe that the free version of Invoice Ninja is a truly awesome product loaded
with the key features you need to bill your clients electronically. But for those who
crave still more Ninja awesomeness, we've unmasked the Invoice Ninja Pro plan, which
offers more versatility, power and customization options for just $50 per year. </p>
<br/>&nbsp;<br/>
</div>
</div>
</div>
</section>
2014-04-26 21:00:31 +02:00
<div style="background-color:#f8f8f8">
<center><img src="{{ asset('images/pro-plan-chart.png') }}"/></center>
</div>
2014-04-25 15:15:13 +02:00
2014-04-26 21:00:31 +02:00
<section style="background-color:#f8f8f8;padding-top:80px;padding-bottom:80px;">
2014-04-25 15:15:13 +02:00
<div class="container">
<div class="row">
<div class="col-md-3 center-block">
<a href="#">
<div class="cta">
<h2 onclick="return getStarted()">Invoice Now <span>+</span></h2>
</div>
</a>
</div>
</div>
</div>
</section>
2014-04-24 10:46:44 +02:00
@stop