gemini-ui-redesign / services.php
oldmonk69's picture
Upload 9 files (#11)
ec28a67 verified
raw
history blame
2.28 kB
<?php
$pageSlug='services'; $pageTitle='Services & Pricing β€” NeuralNomadAI'; $pageDesc='AI image creation, prompts, automation.';
ob_start(); ?>
<div class="container">
<div class="text-center mb-4"><h2 class="fw-bold">Services & Pricing</h2><p class="text-secondary">Unlimited revisions β€’ Commercial rights</p></div>
<div class="row g-4">
<?php
$cards = [
['Bespoke AI Image Creation','High-res visuals tailored to your brief.',['High-res images','Revisions','Commercial use'],'FIVERR_GIG_URL_BASIC'],
['Prompt Engineering & Tuning','Consistent outputs across tools.',['Master prompts','Test runs','Style snippet'],'FIVERR_GIG_URL_STANDARD'],
['Image-to-Image Editing','Remix, upscale, style-transfer.',['Refined images','Upscaled file','24–48h'],'FIVERR_GIG_URL_PREMIUM'],
['Automation & Creator Tools','Batching, templating, pipeline helpers.',['Custom script','Walkthrough video','7-day support'],'FIVERR_GIG_URL_AUTOMATION'],
];
foreach($cards as $c): ?>
<div class="col-lg-6">
<div class="card h-100 shadow-sm"><div class="card-body">
<h5 class="card-title"><?= $c[0] ?></h5><p class="text-secondary"><?= $c[1] ?></p>
<ul class="small mb-3"><?php foreach($c[2] as $li) echo "<li>$li</li>"; ?></ul>
<a class="btn btn-outline-primary btn-sm" href="<?= $c[3] ?>">Open on Fiverr</a>
</div></div>
</div>
<?php endforeach; ?>
</div>
<div class="table-responsive mt-5">
<table class="table table-striped align-middle">
<thead class="table-primary"><tr><th>Tier</th><th>Includes</th><th>Delivery</th><th>Starting</th><th>Link</th></tr></thead>
<tbody>
<tr><td>Basic</td><td>1 concept, n revisions</td><td>48–72h</td><td>$</td><td><a href="FIVERR_GIG_URL_BASIC">Fiverr β†’</a></td></tr>
<tr><td>Standard</td><td>2 concepts, prompt doc</td><td>24–48h</td><td>$$</td><td><a href="FIVERR_GIG_URL_STANDARD">Fiverr β†’</a></td></tr>
<tr><td>Premium</td><td>Brand pack, automation opt.</td><td>24h</td><td>$$$</td><td><a href="FIVERR_GIG_URL_PREMIUM">Fiverr β†’</a></td></tr>
</tbody>
</table>
</div>
</div>
<?php $content=ob_get_clean(); include 'template.php'; ?>