-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
290 lines (269 loc) · 8.65 KB
/
Copy pathindex.html
File metadata and controls
290 lines (269 loc) · 8.65 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Audilingua — Turn language lessons into study materials, automatically</title>
<meta name="description" content="Record your 1:1 language lessons and get structured vocabulary, corrections, and next steps — automatically.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@600;700&family=Nunito:wght@400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #fffaf5;
--surface: #ffffff;
--coral: #e8604c;
--coral-hover: #d4523f;
--text-primary: #1a1a1a;
--text-body: #4a4a4a;
--text-muted: #8a8a8a;
--border: #e8e0d8;
--font-heading: 'Quicksand', sans-serif;
--font-body: 'Nunito', sans-serif;
--max-width: 800px;
}
body {
font-family: var(--font-body);
background: var(--bg);
color: var(--text-body);
font-size: 18px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
.section {
max-width: var(--max-width);
margin: 0 auto;
padding: 60px 24px;
}
/* ── Hero ── */
.hero {
text-align: center;
padding: 100px 24px 60px;
}
.hero-logo {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 32px;
text-decoration: none;
}
.hero-logo-icon {
width: 40px;
height: 40px;
background: var(--coral);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: var(--font-heading);
font-weight: 700;
font-size: 20px;
}
.hero-logo-text {
font-family: var(--font-heading);
font-weight: 700;
font-size: 24px;
color: var(--text-primary);
}
.hero h1 {
font-family: var(--font-heading);
font-size: 44px;
font-weight: 700;
line-height: 1.15;
color: var(--text-primary);
margin-bottom: 20px;
}
.hero h1 .accent { color: var(--coral); }
.hero p {
font-size: 19px;
max-width: 560px;
margin: 0 auto 36px;
}
/* ── Buttons ── */
.btn-primary {
display: inline-block;
background: var(--coral);
color: white;
font-family: var(--font-body);
font-weight: 600;
font-size: 18px;
padding: 16px 36px;
border-radius: 14px;
border: none;
cursor: pointer;
text-decoration: none;
transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
box-shadow: 0 2px 8px rgba(232, 96, 76, 0.25);
}
.btn-primary:hover {
background: var(--coral-hover);
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(232, 96, 76, 0.35);
}
/* ── Cards ── */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 32px;
}
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px 24px;
text-align: center;
}
.card-num {
display: inline-flex;
width: 36px;
height: 36px;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--coral);
color: white;
font-family: var(--font-heading);
font-weight: 700;
font-size: 16px;
margin-bottom: 14px;
}
.card h3 {
font-family: var(--font-heading);
font-weight: 700;
font-size: 18px;
color: var(--text-primary);
margin-bottom: 8px;
}
.card p { font-size: 15px; }
/* ── Section headings ── */
.section h2 {
font-family: var(--font-heading);
font-size: 32px;
font-weight: 700;
color: var(--text-primary);
text-align: center;
margin-bottom: 12px;
}
.section .subtitle {
text-align: center;
max-width: 600px;
margin: 0 auto 8px;
}
/* ── Features list ── */
.features {
list-style: none;
max-width: 480px;
margin: 24px auto 0;
}
.features li {
padding: 12px 0;
border-bottom: 1px solid var(--border);
padding-left: 28px;
position: relative;
}
.features li::before {
content: "\2713";
position: absolute;
left: 0;
color: var(--coral);
font-weight: 700;
}
/* ── Alternating bg ── */
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
/* ── Bottom CTA ── */
.bottom-cta {
text-align: center;
padding: 80px 24px;
}
.bottom-cta h2 {
font-family: var(--font-heading);
font-size: 32px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 12px;
}
.bottom-cta p { margin-bottom: 28px; }
/* ── Footer ── */
footer {
text-align: center;
padding: 24px;
color: var(--text-muted);
font-size: 14px;
}
@media (max-width: 600px) {
.hero h1 { font-size: 32px; }
.card-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="hero">
<a href="https://audilingua.com" class="hero-logo">
<div class="hero-logo-icon">A</div>
<span class="hero-logo-text">Audilingua</span>
</a>
<h1>Turn language lessons into <span class="accent">real progress</span></h1>
<p>Record your 1:1 lesson with any tutor. Get structured vocabulary, corrections, and next steps — automatically.</p>
<a href="https://audilingua.com" class="btn-primary">Get Started Free</a>
</div>
<div class="section-alt">
<div class="section">
<h2>The Problem</h2>
<p class="subtitle">You leave your language lesson with scattered notes — or nothing at all. Key corrections and new vocabulary slip away. Review is inconsistent and progress feels slower than it should.</p>
</div>
</div>
<div class="section">
<h2>How It Works</h2>
<div class="card-grid">
<div class="card">
<div class="card-num">1</div>
<h3>Record</h3>
<p>Hit record during your lesson with a tutor on any platform.</p>
</div>
<div class="card">
<div class="card-num">2</div>
<h3>Transcribe</h3>
<p>Audio is transcribed with high-accuracy speech-to-text.</p>
</div>
<div class="card">
<div class="card-num">3</div>
<h3>Review</h3>
<p>Get a structured recap with vocabulary, corrections, and next steps.</p>
</div>
</div>
</div>
<div class="section-alt">
<div class="section">
<h2>What You Get After Every Lesson</h2>
<ul class="features">
<li>Vocabulary and key phrases from your lesson</li>
<li>Mistakes identified with corrections</li>
<li>Clear next steps for practice</li>
<li>All your lessons in one place over time</li>
<li>Works without any effort from your teacher</li>
</ul>
</div>
</div>
<div class="section">
<h2>Why Not Just Use ChatGPT or Otter.ai?</h2>
<p class="subtitle">Generic transcription tools give you a wall of text. Audilingua gives you study-ready materials built specifically for language learning — vocabulary lists, corrections, and practice suggestions, not meeting minutes.</p>
</div>
<div class="section-alt">
<div class="section">
<h2>Works With Any Tutor Platform</h2>
<p class="subtitle">iTalki, Preply, Cambly, Verbling, Zoom, Google Meet — record your lesson however you take it. Native apps for Windows, macOS, and Linux.</p>
</div>
</div>
<div class="bottom-cta">
<h2>Start turning lessons into progress</h2>
<p>Try Audilingua free for a week.</p>
<a href="https://audilingua.com" class="btn-primary">Visit audilingua.com</a>
</div>
<footer>
<p>© 2025 Audilingua</p>
</footer>
</body>
</html>