Server : LiteSpeed System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u615232177 ( 615232177) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/u615232177/domains/solarboardlimited.com/public_html/ |
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
$page_title = "About us";
$page_header = "about_header.jpg";
include("header.php"); ?>
<title><?php echo $company_name; ?> - <?php echo $page_title; ?></title>
<?php include("page_header.php"); ?>
<!-- choose area -->
<div class="choose-area py-100">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="choose-content wow fadeInUp" data-wow-delay=".25s">
<div class="site-heading mb-0">
<span class="site-title-tagline"><i class="fas fa-solar-panel"></i> Why Choose Us</span>
<h2 class="site-title">We deliver <span>expertise you can trust</span> </h2>
<p>
With years of experience in solar and inverter technology, we provide reliable solutions backed by industry expertise and excellence.
</p>
</div>
<div class="choose-content-wrap">
<div class="choose-item">
<div class="choose-item-icon">
<img src="assets/img/icon/money-2.svg" alt="">
</div>
<div class="choose-item-info">
<h4>Affordable Cost</h4>
<p>High-quality solar and inverter solutions at budget-friendly prices, ensuring cost-effective and sustainable energy for all.</p>
</div>
</div>
<div class="choose-item">
<div class="choose-item-icon">
<img src="assets/img/icon/staff.svg" alt="">
</div>
<div class="choose-item-info">
<h4>Our Experienced Team</h4>
<p>A dedicated team of skilled professionals with expertise in solar and inverter technology, committed to delivering top-quality energy solutions.</p>
</div>
</div>
<div class="choose-item">
<div class="choose-item-icon">
<img src="assets/img/icon/certified.svg" alt="">
</div>
<div class="choose-item-info">
<h4>Certified Company</h4>
<p>A trusted and certified provider of high-quality solar and inverter solutions, ensuring reliability, safety, and industry compliance.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="choose-img wow fadeInRight" data-wow-delay=".25s">
<img class="img-1" src="site_img/general/about1.jpg" alt="">
<img class="img-2" src="site_img/general/about2.jpg" alt="">
<img class="shape" src="assets/img/shape/06.png" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- choose area end -->
<!-- testimonial-area -->
<div class="testimonial-area tm-bg pt-80 pb-60">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="site-heading wow fadeInDown" data-wow-delay=".25s">
<span class="site-title-tagline"><i class="fas fa-solar-panel"></i> Testimonials</span>
<h2 class="site-title text-white">Hear from <span>Satisfied</span> Customers</h2>
<p class="text-white">
Discover how our reliable solar and inverter solutions have transformed energy experiences through real feedback from happy customers.
</p>
<a href="contact.php" class="theme-btn mt-30">Know More <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-8">
<div class="testimonial-slider owl-carousel owl-theme wow fadeInUp" data-wow-delay=".25s">
<?php
$stmt_test = $con -> prepare('SELECT * FROM testimonials ORDER BY id DESC');
$stmt_test -> execute();
$stmt_test -> store_result();
$stmt_test -> bind_result($test_id,$test_name,$test_comment,$test_picture);
$numrows_test = $stmt_test -> num_rows();
if($numrows_test > 0){
while ($stmt_test -> fetch()) { ?>
<div class="testimonial-item">
<div class="testimonial-quote">
<div class="testimonial-rate">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<div class="testimonial-quote-icon">
<img src="assets/img/icon/quote.svg" alt="">
</div>
<p>
<?= $test_comment; ?>
</p>
</div>
<div class="testimonial-content">
<div class="testimonial-author-info">
<h4><?= $test_name ?></h4>
</div>
</div>
</div>
<?php } } ?>
</div>
</div>
</div>
</div>
</div>
<!-- testimonial-area end -->
</main>
<?php include("footer.php"); ?>