-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.html
More file actions
109 lines (97 loc) · 5.33 KB
/
about-us.html
File metadata and controls
109 lines (97 loc) · 5.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About Us | Crypto Movers</title>
<meta name="description" content="Learn about Crypto Movers and our mission to provide real-time crypto market intelligence. Built on the edge for speed and accuracy.">
<meta name="keywords" content="about crypto movers, crypto market tracker, traderabba, crypto tools, real-time crypto data">
<meta name="author" content="Buha">
<meta property="og:title" content="About Us | Crypto Movers">
<meta property="og:description" content="Simplifying market intelligence. Instant snapshots of the Top 50 Gainers and Losers.">
<meta property="og:image" content="https://cryptomovers.pages.dev/images/social-media.jpg">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="About Us | Crypto Movers">
<meta name="twitter:description" content="Simplifying market intelligence. Instant snapshots of the Top 50 Gainers and Losers.">
<meta name="twitter:image" content="https://cryptomovers.pages.dev/images/social-media.jpg">
<link rel="icon" type="image/png" href="/images/bullish.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- NAV BAR-->
<nav class="navbar">
<div class="nav-container">
<a href="/" class="logo">
<img src="/images/bullish.png" alt="Logo">
<span>Crypto <span class="highlight">Movers</span></span>
</a>
<div class="menu-toggle" id="mobile-menu">
<span class="bar"></span><span class="bar"></span><span class="bar"></span>
</div>
<ul class="nav-menu">
<li class="nav-item"><a href="/" class="nav-link">Home</a></li>
<li class="nav-item"><a href="/more-tools" class="nav-link">More Tools</a></li>
<li class="nav-item"><a href="/about-us" class="nav-link active">About Us</a></li>
<li class="nav-item"><a href="/contact-us" class="nav-link">Contact Us</a></li>
<li class="nav-item">
<a href="https://x.com/heisbuba" target="_blank" class="nav-btn">Follow Dev</a>
</li>
</ul>
</div>
</nav>
<main id="app-content">
<div class="hero">
<h1>Our Mission</h1>
<p class="sub-text">Simplifying Market Intelligence</p>
</div>
<div class="about-content-wrapper">
<div class="card">
<h3><i class="fas fa-bullseye" style="color:var(--primary)"></i> Why Crypto Movers?</h3>
<p>
In a market with thousands of tokens, knowing what is moving <strong>right now</strong> is the difference between a spoting a good trade and a missed opportunity.
</p>
<p>
Most trackers are cluttered with complex charts and noise. We filter the chaos to give you a clean, instant snapshot of the Top 50 Gainers and Losers across the market.
</p>
</div>
<div class="card">
<h3><i class="fas fa-code" style="color:var(--green)"></i> Under the Hood</h3>
<p>
We built a custom <strong>Hybrid Engine</strong> running on Cloudflare's Edge Network. It performs "Sprint Scans" for instant loading and "Deep Scans" in the background to analyze the top 1,500 crypto coins without hitting API rate limits while taking advantage of CoinGecko's free API.
</p>
<div class="tech-stack">
<span class="tech-badge"><i class="fas fa-bolt"></i> Cloudflare Workers</span>
<span class="tech-badge"><i class="fas fa-database"></i> KV Storage</span>
<span class="tech-badge"><i class="fab fa-js"></i> CoinGecko API</span>
</div>
</div>
<div class="card" style="text-align: center;">
<h3>Built by @TraderAbba</h3>
<p>
Developed with a passion for clean UI and fast data.
Follow me on X (Twitter) for updates, new features, and market insights.
</p>
<a href="https://x.com/traderabba" target="_blank" class="btn" style="background: black; width: fit-content; margin: 0 auto; margin-top: 15px; text-decoration: none;">
<i class="fab fa-x-twitter"></i> Follow Updates
</a>
</div>
</div>
</main>
<footer>
<div class="footer-content">
<div class="footer-logo"><img src="/images/bullish.png" alt="icon"> Crypto Movers</div>
<div class="footer-nav">
<a href="index.html" title="Homepage">Home</a>
<a href="/dex-movers">About Us</a>
<a href="contact-us.html">Contact Us</a>
</div>
<div class="copyright">
© 2025 Crypto Movers v2.0. Made With 💚 by <a href="https://github.com/heisbuba" target="_blank">@heisbuba</a>
</div>
</div>
</footer>
<script src="scripts/common.js"></script>
</body>
</html>