Our service page

This commit is contained in:
CHIEFSOFT\ameye
2024-09-22 13:45:17 -04:00
parent 65a6ada401
commit eca83dc9de
2 changed files with 123 additions and 1 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ class Home extends BaseController
}
public function ourService(): string
{
return view('about-us');
return view('our-services');
}
}
+122
View File
@@ -0,0 +1,122 @@
<?php $this->extend('layouts/master') ?>
<?php $this->section('content') ?>
<!-- About Us Section Start -->
<div class="about-us">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<!-- About Us Image Start -->
<div class="about-image">
<!-- About Image Start -->
<div class="about-img-1">
<figure class="reveal">
<img src="/assets/images/about-img-1.jpg" alt="">
</figure>
</div>
<!-- About Image End -->
<!-- About Image Start -->
<div class="about-img-2">
<figure class="reveal">
<img src="/assets/images/about-img-2.jpg" alt="">
</figure>
</div>
<!-- About Image End -->
</div>
<!-- About Us Image End -->
</div>
<div class="col-lg-6">
<!-- About Us Content Start -->
<div class="about-content">
<!-- Section Title Start -->
<div class="section-title">
<h3 class="wow fadeInUp">our Service</h3>
<h2 class="text-anime-style-3" data-cursor="-opaque">Rent with ease and clarity.</h2>
</div>
<!-- Section Title End -->
<!-- About Content Body Start -->
<div class="about-content-body">
<!-- About Trusted Booking Start -->
<div class="about-trusted-booking wow fadeInUp" data-wow-delay="0.5s">
<div class="icon-box">
<img src="/assets/images/icon-about-trusted-1.svg" alt="">
</div>
<div class="trusted-booking-content">
<h3> Van Rental Terms & Pricing</h3>
<p>Our delivery van rentals require a one-week minimum contract that is priced according to vehicle type, length of terms, and season of the year.</p>
</div>
</div>
<!-- About Trusted Booking End -->
<!-- About Trusted Booking Start -->
<div class="about-trusted-booking wow fadeInUp" data-wow-delay="0.75s">
<div class="icon-box">
<img src="/assets/images/icon-about-trusted-2.svg" alt="">
</div>
<div class="trusted-booking-content">
<h3>Mileage Allowance</h3>
<p>Our contracts come with a generous monthly mileage allowance, providing you with the freedom to use the vehicle as you need. If you exceed this allowance, we apply a reasonable charge per mile, ensuring fairness and transparency in our pricing.</p>
</div>
</div>
<!-- About Trusted Booking End -->
<!-- About Trusted Booking Start -->
<div class="about-trusted-booking wow fadeInUp" data-wow-delay="0.75s">
<div class="icon-box">
<img src="/assets/images/icon-about-trusted-2.svg" alt="">
</div>
<div class="trusted-booking-content">
<h3>Returning Vehicles</h3>
<p>Vehicles will be subject to a condition inspection. The renter is expected to fix the damages before the vehicle is picked up. Damage fees may be charged if the vehicle has experienced excessive wear and tear.</p>
</div>
</div>
<!-- About Trusted Booking End -->
<!-- About Trusted Booking Start -->
<div class="about-trusted-booking wow fadeInUp" data-wow-delay="0.75s">
<div class="icon-box">
<img src="/assets/images/icon-about-trusted-2.svg" alt="">
</div>
<div class="trusted-booking-content">
<h3>Insurance</h3>
<p>Our short-term rental vehicles are insured by the renter's insurance. The renter should have insurance to cover the liability policy for each vehicle.</p>
</div>
</div>
<!-- About Trusted Booking End -->
</div>
<!-- About Content Body End -->
<!-- About Content Footer Start -->
<div class="about-content-footer wow fadeInUp" data-wow-delay="1s">
<a href="/contact" class="btn-default">Contact us to check on our availability</a>
</div>
<!-- About Content Footer End -->
</div>
<!-- About Us Content End -->
</div>
</div>
</div>
</div>
<!-- About Us Section End -->
<?= $this->endSection() ?>