Files
WebWizard/src/Templates/sections/hero.php
2026-06-15 04:38:05 +02:00

19 lines
585 B
PHP

<?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>