commit 20260703

This commit is contained in:
2026-07-03 20:34:27 +08:00
parent 296db4a164
commit c1630b8c10
63 changed files with 3497 additions and 1110 deletions
+24
View File
@@ -0,0 +1,24 @@
<!--
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>