imlemented step 16 by Gemini

- Template
This commit is contained in:
2026-06-15 04:38:05 +02:00
parent 7efd6b24a5
commit d350daa1d8
11 changed files with 302 additions and 10 deletions

View File

@ -0,0 +1,18 @@
<?php
/**
* @var array $project
*/
$hero = $project['content']['generated']['hero'] ?? [];
?>
<section id="hero" class="hero">
<div class="container">
<div class="hero-content">
<h1><?= e($hero['title'] ?? $project['wizard_data']['identity']['business_name']) ?></h1>
<p class="subtitle"><?= e($hero['subtitle'] ?? $project['wizard_data']['identity']['tagline']) ?></p>
<div class="hero-actions">
<a href="#contact" class="btn btn-primary">Kontaktujte nás</a>
<a href="#services" class="btn btn-secondary">Naše služby</a>
</div>
</div>
</div>
</section>