-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
156 lines (140 loc) · 8.16 KB
/
about.html
File metadata and controls
156 lines (140 loc) · 8.16 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About — XChangeNow</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0f; --surface: #111118; --surface2: #1a1a24;
--border: rgba(255,255,255,0.08); --accent: #00e5a0;
--accent-dim: rgba(0,229,160,0.12); --accent-glow: rgba(0,229,160,0.25);
--text: #f0f0f5; --text-muted: #8888aa; --text-dim: #55556a;
--mono: 'DM Mono', monospace; --sans: 'Space Grotesk', sans-serif;
--radius: 12px; --radius-sm: 8px;
}
body { font-family: var(--sans); background: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; }
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 0 2rem; height: 60px;
background: rgba(10,10,15,0.85); backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.875rem; padding: 6px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.nav-links a.active { color: var(--accent); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99; background: var(--surface); border-bottom: 1px solid var(--border); padding: 1rem; }
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { color: var(--text-muted); text-decoration: none; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.95rem; }
main { flex: 1; padding: 100px 1.5rem 4rem; max-width: 720px; margin: 0 auto; width: 100%; }
.page-label { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; background: var(--accent-dim); border: 1px solid var(--accent-glow); padding: 4px 14px; border-radius: 100px; display: inline-block; margin-bottom: 1.5rem; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 1rem; line-height: 1.1; }
h1 span { color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 3rem; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 3rem; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.feature-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.tech-section { margin-bottom: 3rem; }
.section-title { font-size: 0.75rem; font-family: var(--mono); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.tech-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-chip { padding: 6px 16px; background: var(--surface2); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8rem; font-family: var(--mono); color: var(--text-muted); }
.cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--accent); color: #000; font-weight: 700; font-family: var(--sans); border-radius: var(--radius); text-decoration: none; transition: opacity 0.2s; }
.cta:hover { opacity: 0.85; }
footer { text-align: center; padding: 1.5rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-dim); }
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--accent); }
@media (max-width: 600px) { .nav-links { display: none; } .burger { display: flex; } nav { padding: 0 1.25rem; } }
</style>
</head>
<body>
<nav>
<a href="index.html" class="nav-logo">XChange<span class="dot">Now</span></a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger" id="burger"><span></span><span></span><span></span></div>
</nav>
<div class="mobile-menu" id="mobile-menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
<main>
<div class="page-label">About the project</div>
<h1>Built for <span>speed</span> and simplicity</h1>
<p class="lead">XChangeNow is a real-time currency converter with no bloat. No accounts, no ads, no tracking. Just accurate rates pulled directly from the ExchangeRate API — available instantly for over 160 currencies worldwide.</p>
<div class="features">
<div class="feature-card">
<div class="feature-icon">⚡</div>
<div class="feature-title">Real-time rates</div>
<div class="feature-desc">Fetches live exchange rates on every conversion via a reliable public API.</div>
</div>
<div class="feature-card">
<div class="feature-icon">🌍</div>
<div class="feature-title">160+ currencies</div>
<div class="feature-desc">From USD to ZWL — every major and minor world currency is supported.</div>
</div>
<div class="feature-card">
<div class="feature-icon">🏳️</div>
<div class="feature-title">Flag previews</div>
<div class="feature-desc">Visual flag indicators for quick currency identification via FlagCDN.</div>
</div>
<div class="feature-card">
<div class="feature-icon">🌐</div>
<div class="feature-title">Bilingual</div>
<div class="feature-desc">Full Spanish and English interface with instant language switching.</div>
</div>
<div class="feature-card">
<div class="feature-icon">📱</div>
<div class="feature-title">Responsive</div>
<div class="feature-desc">Optimized for mobile, tablet, and desktop with adaptive layouts.</div>
</div>
<div class="feature-card">
<div class="feature-icon">🚫</div>
<div class="feature-title">Zero dependencies</div>
<div class="feature-desc">Pure Vanilla JS — no frameworks, no bundlers, no npm install needed.</div>
</div>
</div>
<div class="tech-section">
<div class="section-title">Tech stack</div>
<div class="tech-grid">
<span class="tech-chip">HTML5</span>
<span class="tech-chip">CSS3</span>
<span class="tech-chip">JavaScript ES6+</span>
<span class="tech-chip">ExchangeRate API</span>
<span class="tech-chip">FlagCDN</span>
<span class="tech-chip">FontAwesomeCDN</span>
<span class="tech-chip">Intl.NumberFormat</span>
</div>
</div>
<a href="index.html" class="cta">
Try XChangeNow →
</a>
</main>
<footer>
<p>Made by <a href="https://github.com/dev-vixo">dev-vixo</a> · <a href="https://exchangerate-api.com" target="_blank">ExchangeRate API</a></p>
</footer>
<script>
document.getElementById("burger").addEventListener("click", () => {
document.getElementById("burger").classList.toggle("open");
document.getElementById("mobile-menu").classList.toggle("open");
});
</script>
</body>
</html>