Spaces:
Running
Running
File size: 938 Bytes
ec28a67 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?php
$pageSlug='reviews'; $pageTitle='Trust & Reviews β NeuralNomadAI'; $pageDesc='What clients say.';
ob_start(); ?>
<div class="container">
<div class="text-center mb-4"><h2 class="fw-bold">Client Reviews & Trust</h2><p class="text-secondary">5-star rated seller for AI content.</p></div>
<div class="row g-4">
<?php foreach([
['βPerfect mood, fast delivery.β','β Sarah M.'],
['βPrompt system saves hours weekly.β','β David P.'],
['βGreat comms & UI previews.β','β Omar K.'],
] as $q): ?>
<div class="col-md-4">
<figure class="p-4 border rounded-3 h-100 shadow-sm bg-body">
<blockquote class="blockquote mb-0"><p><?= $q[0] ?></p></blockquote>
<figcaption class="blockquote-footer mt-2"><?= $q[1] ?></figcaption>
</figure>
</div>
<?php endforeach; ?>
</div>
</div>
<?php $content=ob_get_clean(); include 'template.php'; ?>
|