hugo-saasify-theme/layouts/shortcodes/features-section.html

17 lines
672 B
HTML

{{/* Features Section Wrapper Shortcode */}}
{{ $title := .Get "title" | default "Powerful Features for Modern Teams" }}
{{ $description := .Get "description" | default "Discover how our platform helps you understand and optimize every aspect of your user experience." }}
<section class="section">
<div class="container">
<div class="text-center max-w-3xl mx-auto mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-6">{{ $title }}</h2>
<p class="text-xl text-gray-600">{{ $description }}</p>
</div>
<!-- Feature Grid -->
<div class="space-y-32">
{{ .Inner }}
</div>
</div>
</section>