-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (47 loc) · 2.5 KB
/
index.html
File metadata and controls
49 lines (47 loc) · 2.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>QuickSkill – 5-Minute Lessons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Micro-learning iOS app with 5-minute interactive lessons for commuters.">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<style>
:root { --bg:#0b1020; --fg:#ffffff; --muted:#9aa3b2; --accent:#4f7cff; }
*{box-sizing:border-box} body{margin:0;font-family:Inter,system-ui;background:var(--bg);color:var(--fg)}
.wrap{max-width:960px;margin:0 auto;padding:48px 20px}
.hero{display:flex;gap:32px;align-items:center;flex-wrap:wrap}
.hero h1{font-size:48px;line-height:1.05;margin:0 0 12px}
.hero p{color:var(--muted);font-size:18px}
.cta a{display:inline-block;background:var(--accent);color:#fff;padding:12px 16px;border-radius:12px;text-decoration:none;font-weight:600}
.card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:20px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-top:28px}
footer{margin-top:48px;color:var(--muted);font-size:14px}
img.mock{max-width:300px;border-radius:24px;border:1px solid rgba(255,255,255,.15)}
</style>
</head>
<body>
<div class="wrap">
<div class="hero">
<div>
<h1>QuickSkill</h1>
<p>Learn coding, cooking, or history in <strong>5 minutes</strong>. Designed for commuting. SwiftUI, offline progress, and quick quizzes.</p>
<div class="cta">
<a href="APP_STORE_URL">Download on the App Store</a>
</div>
</div>
<img class="mock" src="screenshot.png" alt="QuickSkill Screenshot">
</div>
<div class="grid">
<div class="card"><h3>Swift & Simple</h3><p>Fast SwiftUI interface with zero sign-in. Open, learn, done.</p></div>
<div class="card"><h3>Offline Friendly</h3><p>Save lessons and keep your progress on device with Core Data.</p></div>
<div class="card"><h3>Watch or Read</h3><p>Short videos (AVKit) + concise step cards and a one-question quiz.</p></div>
</div>
<footer>
<p>© <span id="y"></span> QuickSkill. No personal data collected. <a href="privacy.html" style="color:#c9d4ff">Privacy</a></p>
</footer>
</div>
<script>document.getElementById('y').textContent=new Date().getFullYear()</script>
</body>
</html>