42 lines
1.8 KiB
PHP
42 lines
1.8 KiB
PHP
<style>
|
|
.testimonial .item img {
|
|
border-radius: 50%;
|
|
}
|
|
</style>
|
|
<div class="block7">
|
|
<div class="container text-center">
|
|
<div class="owl-carousel testimonial">
|
|
|
|
<div class="item"> <img src="<?php echo CDN_URL; ?>images/testimonials/photo2.png" alt=""/>
|
|
<p>Excellent app! Used this to track and settle shared expenses on a 2 week trip. This app made it easy & painless to track & settle up at the end. Great!</p>
|
|
<cite>Fang Chow</cite> </div>
|
|
|
|
<div class="item"> <img src="<?php echo CDN_URL; ?>images/testimonials/photo0.png" alt=""/>
|
|
<p>"Best app ever! The authors of this app deserve a Nobel price for economy! Probably the most useful app in my smartphone, great way how to manage all the group expenses with different outputs (pdf, webpage, anything). I don't do reviews since it's annoying but this one is well deserved. Thank you"</p>
|
|
<cite>Peter Sámel</cite> </div>
|
|
|
|
<div class="item"> <img src="<?php echo CDN_URL; ?>images/testimonials/photo3.png" alt=""/>
|
|
<p>Straightforward and easy to use. This is exactly what I need to track expenses and keep them balanced.</p>
|
|
<cite>Luis Medina</cite> </div>
|
|
|
|
<div class="item"> <img src="<?php echo CDN_URL; ?>images/testimonials/photo1.png" alt=""/>
|
|
<p>"Nice and simple interface. Adding and deleting groups or members is easy. Send report features makes it easier to export soft copy of bills etc. 5 star worthy all the way. Great job by development team"</p>
|
|
<cite>Pradeep Tiwari</cite> </div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(document).ready(function() {
|
|
var owl = $('.owl-carousel');
|
|
owl.owlCarousel({
|
|
items: 1,
|
|
loop: true,
|
|
margin: 0,
|
|
autoplay: true,
|
|
autoplayTimeout: 3000,
|
|
autoplayHoverPause: false
|
|
});
|
|
|
|
})
|
|
</script> |