Spaces:
Running
Running
File size: 2,656 Bytes
ec28a67 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
<?php
$pageSlug='home'; $pageTitle='NeuralNomadAI β Home'; $pageDesc='Creative AI imagery & automation.';
ob_start(); ?>
<div class="container">
<div id="hero" class="carousel slide mb-5" data-bs-ride="carousel">
<div class="carousel-inner rounded-4 shadow">
<div class="carousel-item active">
<img class="d-block w-100 object-fit-cover" style="aspect-ratio:16/7" src="https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?q=80&w=1600&auto=format&fit=crop" alt="">
<div class="carousel-caption">
<h1 class="display-5 fw-bold text-shadow">Creative imagery & automation</h1>
<p class="lead">Images, prompts & tools in 24β72h.</p>
<a class="btn btn-primary btn-lg me-2" href="services.php">Explore Services</a>
<a class="btn btn-outline-light btn-lg" href="portfolio.php">Portfolio</a>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100 object-fit-cover" style="aspect-ratio:16/7" src="https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?q=80&w=1600&auto=format&fit=crop" alt="">
</div>
</div>
<button class="carousel-control-prev" data-bs-target="#hero" data-bs-slide="prev"><span class="carousel-control-prev-icon"></span></button>
<button class="carousel-control-next" data-bs-target="#hero" data-bs-slide="next"><span class="carousel-control-next-icon"></span></button>
</div>
<div class="row g-3 text-center mb-5">
<?php foreach (['β 5-Star Rated','β‘ 24β72h Delivery','π― Commercial License','π¬ Fast Communication','π¦ 100+ Projects'] as $b): ?>
<div class="col-6 col-md"><div class="badge-pill"><?= $b ?></div></div>
<?php endforeach; ?>
</div>
<div class="text-center mb-4">
<h2 class="fw-bold">What we do</h2><p class="text-secondary">AI image creation, prompt engineering, and creator automation.</p>
</div>
<div class="row g-4">
<div class="col-md-6"><div class="card h-100 shadow-sm"><div class="card-body">
<h5 class="card-title">Bespoke AI Image Creation</h5><p class="card-text">High-res visuals tailored to your brief.</p>
<a class="link-primary" href="services.php">See pricing β</a>
</div></div></div>
<div class="col-md-6"><div class="card h-100 shadow-sm"><div class="card-body">
<h5 class="card-title">Prompt Engineering & Tuning</h5><p class="card-text">Consistency and brand fidelity at scale.</p>
<a class="link-primary" href="services.php">See pricing β</a>
</div></div></div>
</div>
</div>
<?php $content=ob_get_clean(); include 'template.php'; ?>
|