gemini-ui-redesign / reviews.php
oldmonk69's picture
Upload 9 files (#11)
ec28a67 verified
raw
history blame
938 Bytes
<?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'; ?>