Files
WebServer/templates/index_en.html
2025-08-30 19:51:53 +08:00

123 lines
4.8 KiB
HTML

{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<!-- Hero Section with Market Ticker -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1>Smart Technology, Creating the Future</h1>
<p class="hero-subtitle">Professional Securities Trading & Investment Platform</p>
<p class="hero-description">Focus on stock trading in the Hong Kong and US markets, smart investment
advisory services to help grow your wealth</p>
<div class="hero-buttons">
<a href="{{ url_for('download') }}" class="btn btn-primary">Download Client</a>
<a href="{{ url_for('services') }}" class="btn btn-outline">Learn More</a>
</div>
</div>
<div class="hero-image">
<div class="market-ticker">
<div class="ticker-header">
<h3>Real-time Quotes</h3>
<span class="refresh-badge">Live</span>
</div>
<div class="ticker-content">
<div class="ticker-item">
<span class="symbol">HSI</span>
<span class="price">16,842.23</span>
<span class="change positive">+1.2%</span>
</div>
<div class="ticker-item">
<span class="symbol">AAPL</span>
<span class="price">173.45</span>
<span class="change positive">+0.8%</span>
</div>
<div class="ticker-item">
<span class="symbol">TSLA</span>
<span class="price">245.67</span>
<span class="change negative">-0.5%</span>
</div>
<div class="ticker-item">
<span class="symbol">BTC/USD</span>
<span class="price">61,234.56</span>
<span class="change positive">+2.1%</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features-section">
<div class="container">
<div class="section-header">
<h2>Why Choose Us</h2>
<p>Professional, Secure, Convenient Investment Experience</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">📈</div>
<h3>Global Markets</h3>
<p>HK stocks, US stocks, A-shares, cryptocurrency and multi-market trading</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔒</div>
<h3>Secure Trading</h3>
<p>Bank-level security protection, fund segregation guarantee</p>
</div>
<div class="feature-card">
<div class="feature-icon">💡</div>
<h3>Smart Investing</h3>
<p>AI investment advisory, smart stock selection, quantitative strategies</p>
</div>
<div class="feature-card">
<div class="feature-icon">💰</div>
<h3>Low Fees</h3>
<p>Zero commission trading, transparent fee structure</p>
</div>
</div>
</div>
</section>
<!-- Trading Tools Section -->
<section class="trading-tools">
<div class="container">
<div class="section-header">
<h2>Professional Trading Tools</h2>
<p>Rich analysis tools to support investment decisions</p>
</div>
<div class="tools-grid">
<div class="tool-card">
<h3>Real-time Charts</h3>
<p>Multiple timeframe candlestick charts, technical indicator analysis</p>
</div>
<div class="tool-card">
<h3>News Analysis</h3>
<p>Real-time financial news, market sentiment analysis</p>
</div>
<div class="tool-card">
<h3>Portfolio Management</h3>
<p>Investment portfolio analysis, risk control tools</p>
</div>
</div>
</div>
</section>
<!-- App Download CTA -->
<section class="app-download">
<div class="container">
<div class="download-content">
<h2>Download Client Now</h2>
<p>Trade anytime, anywhere, seize investment opportunities</p>
<div class="download-buttons">
<a href="{{ url_for('download') }}" class="btn btn-primary">
<span class="icon">📱</span>
Mobile Client
</a>
</div>
</div>
</div>
</section>
{% endblock %}