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
@@ -6,11 +6,14 @@
aria-roledescription="carousel"
aria-label="Homepage hero"
>
<div class="home-hero-carousel__glow" aria-hidden="true"></div>
<div class="home-hero-carousel__inner">
<div class="home-hero-carousel__viewport">
<article class="home-hero-carousel__slide is-active" data-home-hero-slide aria-hidden="false">
<article
class="home-hero-carousel__slide is-active"
data-home-hero-slide
data-hero-layout-reference
aria-hidden="false"
>
<div class="home-hero-carousel__slide-grid">
<div class="home-hero-carousel__content">
<div class="home-hero-carousel__copy">
@@ -31,7 +34,7 @@
Learn To Trade
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><path d="M3 8h10M9 4l4 4-4 4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</a>
<a href="#" class="home-hero-carousel__ai-coach">
<a href="#" class="home-hero-carousel__ai-coach" data-hero-layout-anchor>
<img src="./assets/images/banner/ChatGPT Image Jul 1, 2026, 01_34_31 PM.png" alt="" width="48" height="48" decoding="async">
AI Coach
</a>
@@ -91,7 +94,6 @@
<div class="home-hero-carousel__actions">
<a href="#" class="home-hero-carousel__btn home-hero-carousel__btn--primary">
Choose Your Challenge
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><path d="M3 12V4M3 12l3-3M3 12l3 3M13 4v8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</a>
<a href="#" class="home-hero-carousel__btn home-hero-carousel__btn--ghost home-hero-carousel__btn--ai-coach">
<img src="./assets/images/banner/ChatGPT Image Jul 1, 2026, 01_34_31 PM.png" alt="" width="45" height="45" decoding="async" aria-hidden="true">
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="noindex, nofollow">
<title>Support CTA Module</title>
<link href="../../assets/css/style.css" rel="stylesheet">
<link type="text/css" href="../../assets/css/theme.css" rel="stylesheet">
<link type="text/css" href="../../assets/css/aifo-btn.css" rel="stylesheet">
<link type="text/css" href="../../assets/css/modules/support-cta.css" rel="stylesheet">
<style>
body {
margin: 0;
padding: 48px 16px;
background: #070400;
}
</style>
</head>
<body>
<div id="support-cta-module" style="max-width: 1128px; margin: 0 auto;"></div>
<script src="/js/support-cta-module.js"></script>
</body>
</html>
+34
View File
@@ -0,0 +1,34 @@
<!-- Support CTA floor — include inside #support-cta-module -->
<section class="aifo-support-cta" data-support-cta-module aria-labelledby="aifo-support-cta-title">
<div class="aifo-support-cta__panel">
<div class="aifo-support-cta__visual" aria-hidden="true">
<img
class="aifo-support-cta__img"
src="/assets/images/backgrounds/img-h-07.png"
alt=""
width="327"
height="327"
decoding="async"
>
</div>
<div class="aifo-support-cta__content">
<h2 class="aifo-support-cta__title" id="aifo-support-cta-title">Not found what you're looking for?</h2>
<p class="aifo-support-cta__desc">Chat with us directly or send us an email.</p>
<div class="aifo-support-cta__actions">
<a href="#" class="aifo-btn aifo-btn--primary">Chat with us</a>
<a href="/pages/contact.html" class="aifo-btn aifo-btn--outline aifo-support-cta__email-btn">
Send us an email
<img
class="aifo-support-cta__arrow-icon"
src="/assets/images/demo/about/right.svg"
alt=""
width="16"
height="16"
decoding="async"
aria-hidden="true"
>
</a>
</div>
</div>
</div>
</section>