( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ HEX
HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux mail.thebrand.ai 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:51:50 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/tmpr/../tmpr/..//tmpr/../tmpr/../tmpr/../brandKit/test.php
<!-- ======= 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>