Skip to content

Commit

Permalink
Add footers to long pages.
Browse files Browse the repository at this point in the history
  • Loading branch information
smartclash committed Nov 15, 2020
1 parent 5aa60d7 commit 9083eb3
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 33 deletions.
32 changes: 32 additions & 0 deletions resources/views/layouts/footer.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<footer class="footer">
<div class="content">
<div class="section">
<div class="container">
<div class="columns">
<div class="column is-half is-offset-3">
<p>
Made with ♥ by
<a href="https://twitter.com/xXAlphaManXx" class="has-text-primary">Karan Sanjeev</a>
• An another Indie Project.
</p>
<p>
This whole website is open sourced at
<a href="https://github.com/InScrompT/FormZend" class="has-text-primary">Github</a>
</p>
<p>
Need help? Reach to me via
<a href="https://twitter.com/xXAlphaManXx" class="has-text-primary">Twitter</a>
</p>
<p>
<a href="{{route('privacy')}}" class="has-text-primary">Privacy Policy</a>
<a href="{{route('terms')}}" class="has-text-primary">Terms of Service</a>
<a href="{{route('contact')}}" class="has-text-primary">Contact</a>
</p>
</div>
</div>
</div>
</div>
</div>
</footer>
13 changes: 12 additions & 1 deletion resources/views/plans/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
A successful form submission where the data is sent to your email is considered a submission.
</p>
</div>
<div class="">
<div class="mb-4">
<p class="is-size-4 has-text-grey-dark has-text-weight-semibold">
<span class="has-text-primary">&rightarrow;</span>
What after I exhaust my credits?
Expand All @@ -52,8 +52,19 @@
with credits if you wish to do so :)
</p>
</div>
<div class="mb-4">
<p class="is-size-4 has-text-grey-dark has-text-weight-semibold">
<span class="has-text-primary">&rightarrow;</span>
Will I get all features?
</p>
<p class="is-size-5 has-text-grey-dark">
You will get access to every feature irrespective of the plan you are in. No feature lock-in.
</p>
</div>
</div>
</div>
</div>
</section>

@include('layouts.footer')
@endsection
2 changes: 2 additions & 0 deletions resources/views/privacy.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,6 @@
</div>
</div>
</section>

@include('layouts.footer')
@endsection
2 changes: 2 additions & 0 deletions resources/views/terms.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,6 @@
</div>
</div>
</section>

@include('layouts.footer')
@endsection
33 changes: 1 addition & 32 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,36 +223,5 @@
</div>
</div>
</section>
<footer class="footer">
<div class="content">
<div class="section">
<div class="container">
<div class="columns">
<div class="column is-half is-offset-3">
<p>
Made with ♥ by
<a href="https://twitter.com/xXAlphaManXx" class="has-text-primary">Karan Sanjeev</a>
• An another Indie Project.
</p>
<p>
This whole website is open sourced at
<a href="https://github.com/InScrompT/FormZend" class="has-text-primary">Github</a>
</p>
<p>
Need help? Reach to me via
<a href="https://twitter.com/xXAlphaManXx" class="has-text-primary">Twitter</a>
</p>
<p>
<a href="{{route('privacy')}}" class="has-text-primary">Privacy Policy</a>
<a href="{{route('terms')}}" class="has-text-primary">Terms of Service</a>
<a href="{{route('contact')}}" class="has-text-primary">Contact</a>
</p>
</div>
</div>
</div>
</div>
</div>
</footer>
@include('layouts.footer')
@endsection

0 comments on commit 9083eb3

Please sign in to comment.