9 lines
685 B
HTML
9 lines
685 B
HTML
<!-- CTA Buttons Component -->
|
|
<div class="d-flex justify-content-center gap-3 flex-wrap">
|
|
<a href="{{ primary_url }}" class="btn btn-lg px-5 py-3" style="background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); border: none; color: white; border-radius: 25px; font-weight: 600;">
|
|
<i class="{{ primary_icon }} me-2"></i>{{ primary_text }}
|
|
</a>
|
|
<a href="{{ secondary_url }}" class="btn btn-lg px-5 py-3" style="border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; border-radius: 25px; font-weight: 600;">
|
|
<i class="{{ secondary_icon }} me-2"></i>{{ secondary_text }}
|
|
</a>
|
|
</div> |