25 lines
812 B
HTML
25 lines
812 B
HTML
<!--
|
|
AIFO button snippets — copy/paste or reference for new pages.
|
|
Requires: assets/css/aifo-btn.css
|
|
|
|
Primary CTA with arrow (Figma default):
|
|
-->
|
|
<a href="#" class="aifo-btn aifo-btn--primary aifo-btn--arrow">Join AIFO</a>
|
|
|
|
<!--
|
|
Outline / ghost — no arrow unless design shows one:
|
|
-->
|
|
<a href="#" class="aifo-btn aifo-btn--outline">Begin Learning</a>
|
|
|
|
<!--
|
|
Alternative: inline SVG child (same look, useful inside <button>):
|
|
-->
|
|
<button type="button" class="aifo-btn aifo-btn--outline aifo-btn--arrow">
|
|
Explore Growth Path
|
|
<span class="aifo-btn__arrow" aria-hidden="true">
|
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
|
|
<path d="M3 8h10M9 4l4 4-4 4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg>
|
|
</span>
|
|
</button>
|