( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<!-- ======= SAMPLE GENERATED LOGOS FROM YOUR COMPANY NAME START ======= -->
<!-- TODO This section will be hidden and only shown when the user enters a name on the upper form field -->
<section id="recent-blog-posts" class="recent-blog-posts">
<?php include "APIResultsFunction.php"; ?>
<!-- Section Title -->
<div class="container section-title pt-5" data-aos="fade-up">
<h2>Sample logos Generated instantly. Try for free.</h2>
<p>Whether you need a beauty logo, a logo for your real estate business or even a logo for your new startup,
we help you generate thousands of logo designs in seconds.</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-down">
<div class="row">
<?php
// Set the API URL
$apiUrl = 'https://www.thebrand.ai/TheBrandZ/brandkit.php?mode=DesignByCategory&category=46';
// Loop to display 8 logos
for ($i = 0; $i < 8; $i++) {
echo '<div class="col-lg-3" data-aos="" data-aos-delay="' . ($i * 200) . '">';
echo '<div class="post-box">';
echo '<div class="post-img">';
fetchAndDisplayAPIResults($apiUrl); // Call the function to display the API image
echo '</div>';
echo '<a href="" class="readmore stretched-link"></a>';
echo '</div>';
echo '</div>';
}
?>
</div>
</div>
</section>