| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/coaching_sites/usbusinessfundingsolutions.com/ |
Upload File : |
<?php
require_once __DIR__ . '/includes/functions.php';
require_once __DIR__ . '/includes/data/testimonials.php';
$pageTitle = 'Client Testimonials - US Business Funding Solutions';
$pageDescription = 'Read success stories and 5-star reviews from business owners who secured grants and funding with help from our professional team.';
$activePage = 'testimonials.php';
require __DIR__ . '/includes/header.php';
?>
<!-- ============================================================= hero -->
<section class="section section--top" style="padding-bottom: 2rem">
<div class="container">
<div class="center stack-lg animate-fade-in">
<h1 class="title-xl">
Client Success <span class="gradient-text">Stories</span>
</h1>
<p class="lead lead--lg measure">
Discover how our professional team has helped businesses and organizations across various industries
secure the funding they need to grow and succeed.
</p>
</div>
</div>
</section>
<!-- ================================================ featured stories -->
<section class="section section--muted">
<div class="container">
<div class="center stack" style="margin-bottom: 3rem">
<h2 class="title-lg">Featured Success Stories</h2>
<p class="lead lead--lg measure-sm">
Real stories from real clients who have achieved their funding goals with our help.
</p>
</div>
<?= testimonial_grid(
$storyTestimonials,
['images' => true, 'card_class' => 'card--lift reveal'],
'grid grid--3 grid--gap-lg'
) ?>
</div>
</section>
<!-- ================================================= more testimonials -->
<section class="section">
<div class="container">
<div class="center stack" style="margin-bottom: 3rem">
<h2 class="title-lg">More Client Testimonials</h2>
<p class="lead lead--lg measure-sm">Hundreds of satisfied clients across the nation.</p>
</div>
<?= testimonial_grid($moreStoryTestimonials) ?>
</div>
</section>
<!-- ================================================== 5-star reviews -->
<section class="section section--muted">
<div class="container">
<div class="center stack" style="margin-bottom: 3rem">
<h2 class="title-lg">5-Star Client Reviews</h2>
<p class="lead lead--lg measure-sm">
See what our clients are saying about working with our professional team.
</p>
</div>
<?= testimonial_grid($reviewTestimonials, ['stars' => true, 'small' => true]) ?>
</div>
</section>
<?php require __DIR__ . '/includes/footer.php'; ?>