-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
214 lines (194 loc) · 9.27 KB
/
Copy pathindex.html
File metadata and controls
214 lines (194 loc) · 9.27 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scribe AI - Learn Smarter, Not Harder</title>
<meta name="description" content="Turn any content into study notes, flashcards, quizzes, and podcasts.">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #0a0a0b; color: #fff; }
a { color: inherit; text-decoration: none; }
/* Container */
.wrap { max-width: 900px; margin: 0 auto; padding: 0 24px; }
/* Header */
header { padding: 20px 0; border-bottom: 1px solid #222; }
header .wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 20px; display: flex; align-items: center; gap: 8px; }
.logo-icon { background: #9333ea; padding: 6px 10px; border-radius: 8px; }
nav a { margin-left: 24px; color: #888; font-size: 14px; }
nav a:hover { color: #fff; }
/* Hero */
.hero { text-align: center; padding: 80px 0 60px; }
.hero h1 { font-size: 48px; font-weight: 700; margin-bottom: 16px; line-height: 1.1; }
.hero p { font-size: 18px; color: #888; max-width: 500px; margin: 0 auto 32px; }
.badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.badges img { height: 44px; }
/* Section */
section { padding: 60px 0; border-top: 1px solid #222; }
section h2 { font-size: 28px; margin-bottom: 32px; text-align: center; }
/* Steps */
.steps { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.step { text-align: center; max-width: 220px; }
.step-num { width: 40px; height: 40px; background: #9333ea; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-weight: 700; }
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: #888; }
/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.feat { background: #111; border: 1px solid #222; border-radius: 12px; padding: 20px; }
.feat .icon { font-size: 28px; margin-bottom: 8px; }
.feat h3 { font-size: 15px; margin-bottom: 6px; }
.feat p { font-size: 13px; color: #888; }
/* Audience */
.audience { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.audience span { background: #111; border: 1px solid #222; padding: 10px 20px; border-radius: 50px; font-size: 14px; }
/* Testimonial */
.testimonial { max-width: 500px; margin: 0 auto; text-align: center; background: #111; border: 1px solid #222; border-radius: 16px; padding: 32px; }
.testimonial .stars { color: #fbbf24; font-size: 20px; margin-bottom: 12px; }
.testimonial q { font-size: 16px; font-style: italic; display: block; margin-bottom: 12px; }
.testimonial cite { font-size: 14px; color: #888; }
/* CTA */
.cta { text-align: center; padding: 60px 0; }
.cta h2 { font-size: 28px; margin-bottom: 12px; }
.cta p { color: #888; margin-bottom: 24px; }
/* Footer */
footer { border-top: 1px solid #222; padding: 40px 0; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 { font-size: 12px; color: #888; text-transform: uppercase; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 14px; color: #ccc; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.copyright { text-align: center; color: #666; font-size: 13px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #222; }
/* Mobile */
@media (max-width: 600px) {
.hero h1 { font-size: 32px; }
nav { display: none; }
.steps { flex-direction: column; align-items: center; }
footer .wrap { flex-direction: column; align-items: center; text-align: center; }
.footer-links { flex-direction: column; gap: 24px; }
}
</style>
</head>
<body>
<header>
<div class="wrap">
<a href="index.html" class="logo"><span class="logo-icon">S</span> Scribe AI</a>
<nav>
<a href="creators.html">Creators</a>
<a href="privacy.html">Privacy</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div class="hero">
<div class="wrap">
<h1>Learn Smarter,<br>Not Harder</h1>
<p>Turn any content into study notes, flashcards, quizzes, and podcasts.</p>
<div class="badges">
<a href="https://apps.apple.com/us/app/scribe-ai-learn/id6755475602" target="_blank">
<img src="https://tools.applemediaservices.com/api/badges/download-on-the-app-store/black/en-us?size=250x83" alt="App Store">
</a>
<a href="https://play.google.com/store/apps/details?id=com.kreativekoala.scribeai" target="_blank">
<img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" alt="Google Play">
</a>
</div>
</div>
</div>
<section>
<div class="wrap">
<h2>How It Works</h2>
<div class="steps">
<div class="step">
<div class="step-num">1</div>
<h3>Capture</h3>
<p>Record lectures, paste YouTube links, or upload PDFs.</p>
</div>
<div class="step">
<div class="step-num">2</div>
<h3>Process</h3>
<p>AI transcribes and organizes your content.</p>
</div>
<div class="step">
<div class="step-num">3</div>
<h3>Study</h3>
<p>Review notes, flashcards, quizzes, or podcasts.</p>
</div>
</div>
</div>
</section>
<section>
<div class="wrap">
<h2>Features</h2>
<div class="features">
<div class="feat"><div class="icon">📝</div><h3>Smart Notes</h3><p>AI-generated summaries and outlines</p></div>
<div class="feat"><div class="icon">🗂️</div><h3>Flashcards</h3><p>Auto-generated for spaced repetition</p></div>
<div class="feat"><div class="icon">❓</div><h3>Quizzes</h3><p>Test yourself with AI questions</p></div>
<div class="feat"><div class="icon">🎧</div><h3>AI Podcasts</h3><p>Listen to your notes on the go</p></div>
<div class="feat"><div class="icon">📺</div><h3>YouTube Import</h3><p>Paste any URL for instant notes</p></div>
<div class="feat"><div class="icon">🎙️</div><h3>Recording</h3><p>Record and transcribe lectures</p></div>
</div>
</div>
</section>
<section>
<div class="wrap">
<h2>Who It's For</h2>
<div class="audience">
<span>🎓 Students</span>
<span>💼 Professionals</span>
<span>🧠 Learners</span>
<span>📚 Researchers</span>
</div>
</div>
</section>
<section>
<div class="wrap">
<h2>What Users Say</h2>
<div class="testimonial">
<div class="stars">★★★★★</div>
<q>Game changer for my med school studies. Perfect notes in minutes.</q>
<cite>— Medical Student</cite>
</div>
</div>
</section>
<div class="cta">
<div class="wrap">
<h2>Ready to Learn Smarter?</h2>
<p>Free to start. Available on iOS and Android.</p>
<div class="badges">
<a href="https://apps.apple.com/us/app/scribe-ai-learn/id6755475602" target="_blank">
<img src="https://tools.applemediaservices.com/api/badges/download-on-the-app-store/black/en-us?size=250x83" alt="App Store">
</a>
<a href="https://play.google.com/store/apps/details?id=com.kreativekoala.scribeai" target="_blank">
<img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" alt="Google Play">
</a>
</div>
</div>
</div>
<footer>
<div class="wrap">
<div class="logo"><span class="logo-icon">S</span> Scribe AI</div>
<div class="footer-links">
<div class="footer-col">
<h4>Product</h4>
<a href="https://apps.apple.com/us/app/scribe-ai-learn/id6755475602">iOS App</a>
<a href="https://play.google.com/store/apps/details?id=com.kreativekoala.scribeai">Android App</a>
</div>
<div class="footer-col">
<h4>Company</h4>
<a href="creators.html">Creators</a>
<a href="contact.html">Contact</a>
</div>
<div class="footer-col">
<h4>Legal</h4>
<a href="privacy.html">Privacy</a>
<a href="terms.html">Terms</a>
</div>
</div>
</div>
<div class="wrap">
<p class="copyright">© 2025 Kreative Koala. All rights reserved.</p>
</div>
</footer>
</body>
</html>