-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
359 lines (323 loc) · 9.42 KB
/
index.html
File metadata and controls
359 lines (323 loc) · 9.42 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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MyDailyScribe | Build a Writing Habit</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<style>
:root {
--primary-color: #4a6fa5;
--secondary-color: #6d8ebd;
--accent-color: #ffd166;
--dark-color: #313638;
--light-color: #f5f5f5;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: var(--light-color);
color: var(--dark-color);
line-height: 1.6;
}
header {
background-color: var(--primary-color);
color: white;
text-align: center;
padding: 2rem 0;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.tagline {
font-size: 1.2rem;
font-weight: 300;
margin-bottom: 1.5rem;
}
.cta-button {
display: inline-block;
background-color: var(--accent-color);
color: var(--dark-color);
padding: 0.8rem 1.5rem;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: transform 0.2s ease;
}
.cta-button:hover {
transform: scale(1.05);
}
main {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.feature-card {
background-color: white;
border-radius: 10px;
padding: 1.5rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
text-align: center;
}
.feature-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.how-it-works {
margin: 3rem 0;
text-align: center;
}
.how-it-works h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}
.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.step {
position: relative;
padding: 1.5rem;
background-color: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.step-number {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background-color: var(--secondary-color);
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.testimonials {
margin: 3rem 0;
text-align: center;
display: none;
}
.testimonials h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.testimonial {
background-color: white;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.testimonial q {
font-style: italic;
display: block;
margin-bottom: 1rem;
}
.testimonial .author {
font-weight: bold;
color: var(--secondary-color);
}
.faq {
margin: 3rem 0;
}
.faq h2 {
color: var(--primary-color);
text-align: center;
margin-bottom: 2rem;
}
.faq-item {
margin-bottom: 1rem;
background-color: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.faq-question {
padding: 1rem;
cursor: pointer;
font-weight: bold;
}
.faq-answer {
padding: 0 1rem 1rem;
}
footer {
background-color: var(--dark-color);
color: white;
text-align: center;
padding: 2rem 0;
margin-top: 3rem;
}
.footer-links {
margin: 1rem 0;
}
.footer-links a {
color: var(--accent-color);
margin: 0 1rem;
text-decoration: none;
}
.footer-links a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>My Daily Scribe</h1>
<p class="tagline">Build your writing habit one topic at a time</p>
<a
href="https://chromewebstore.google.com/detail/my-daily-scribe/blleidmndjdlncighljlinlgmjpefilh"
class="cta-button"
>Install Extension</a
>
</header>
<main>
<section class="features">
<div class="feature-card">
<h3>Daily Writing Prompts</h3>
<p>
Receive a new, thought-provoking topic every day to inspire your
writing practice and push your creative boundaries.
</p>
</div>
<div class="feature-card">
<h3>Customizable Timer</h3>
<p>
Set your own writing duration from quick 5-minute sessions to deep
60-minute immersions to match your schedule.
</p>
</div>
<div class="feature-card">
<h3>Distraction-Free Environment</h3>
<p>
Focus solely on your writing with a clean, minimal interface
designed to eliminate distractions and enhance productivity.
</p>
</div>
</section>
<section class="how-it-works">
<h2>How It Works</h2>
<div class="steps">
<div class="step">
<div class="step-number">1</div>
<p>
Install the MyDailyScribe browser extension from the Chrome Web
Store.
</p>
</div>
<div class="step">
<div class="step-number">2</div>
<p>
Click the extension icon to open a new tab with your daily topic.
</p>
</div>
<div class="step">
<div class="step-number">3</div>
<p>
Set your desired writing time and begin your writing practice.
</p>
</div>
<div class="step">
<div class="step-number">4</div>
<p>
Build consistency by writing daily and watch your skills improve
over time.
</p>
</div>
</div>
</section>
<section class="testimonials">
<h2>What Writers Are Saying</h2>
<div class="testimonial-grid">
<div class="testimonial">
<q
>MyDailyScribe has transformed my writing process. The random
topics push me to think creatively and the timer keeps me
focused.</q
>
<p class="author">- Alex T., Fiction Writer</p>
</div>
<div class="testimonial">
<q
>As a blogger, I use MyDailyScribe for warm-up exercises. It's
helped me overcome writer's block countless times!</q
>
<p class="author">- Jamie K., Content Creator</p>
</div>
<div class="testimonial">
<q
>The simplicity is what makes it effective. No account needed, no
distractions—just writing.</q
>
<p class="author">- Morgan L., Student</p>
</div>
</div>
</section>
<section class="faq">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<div class="faq-question">Is MyDailyScribe free to use?</div>
<div class="faq-answer">
Yes, MyDailyScribe is completely free with no hidden fees or premium
features.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Do I need to create an account?</div>
<div class="faq-answer">
No, MyDailyScribe doesn't require any account creation or sign-up.
Just install and start writing!
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can I save my writing?</div>
<div class="faq-answer">
Yes, you can copy your text to save it elsewhere. MyDailyScribe
doesn't store your writing on any servers.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Which browsers support MyDailyScribe?</div>
<div class="faq-answer">
Currently, MyDailyScribe is available for Chrome, with Firefox and
Edge versions coming soon.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Does MyDailyScribe collect my data?</div>
<div class="faq-answer">
MyDailyScribe does not collect any personal data. See our
<a href="privacy.html">Privacy Policy</a> for more details.
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 MyDailyScribe - Build your writing habit one topic at a time</p>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
</footer>
</body>
</html>