forked from isaaclyman/Edward-the-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (119 loc) · 4.67 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="image/svg" href="./static/favicon.png">
<title>Edward | Write Better</title>
<link href="https://fonts.googleapis.com/css?family=Asap+Condensed" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville" rel="stylesheet">
<link href="./static/index.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109036711-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-109036711-1');
</script>
</head>
<body>
<div class="background-gray">
<div class="header">
<img class="logo" src="./static/logo.png">
</div>
<div class="links">
<a href="https://github.com/isaaclyman/Edward-the-App">Source</a>
<a href="http://isaaclyman.com">About the author</a>
<a href="/auth">Try it out</a>
</div>
</div>
<div class="background-pink">
<div class="hook">
<h1>Write that novel.</h1>
<h1>(Finally.)</h1>
</div>
</div>
<div class="background-blue">
<div class="content below-hook">
<h4 class="center">
Edward is a writing app designed for authors. He helps you write faster, smarter and happier.
</h4>
</div>
</div>
<div class="background-brown">
<div class="content">
<p>
Word processors (like Microsoft Word) are good for formatting documents. But they're not good for writing.
</p>
<img class="screenshot" src="./static/word-processor.png">
<p>
You end up staring at a blinking cursor and hoping your book will write itself. It's okay, we've all been there. The problem isn't your talent or training - the problem is that you've got the wrong tool for the job.
</p>
</div>
</div>
<div class="background-green">
<div class="content">
<p>
Edward is different. He's an app for the writing process: planning, outline, development, and analysis.
</p>
<p>
Edward looks like this:
</p>
<img class="screenshot" src="./static/app-screenshot.png">
</div>
</div>
<div class="background-yellow">
<div class="content">
<p>
On the left is a text editor, with a row of tabs above it so you can switch between chapters with a single click. Next to it is your chapter in miniature, with a built-in magnifier so you can scan your chapter on the fly. And on the right is your outline, containing anything you want to keep handy while you write.
</p>
<p>
Edward is all about conquering the blank page, and he's very good at it.
</p>
<p>Other features include:</p>
<ul>
<li>
Premade templates for novels, essays, and scripts, so you can get started faster.
</li>
<li>
Instant word, paragraph, and minute count for the current chapter and document - just hover over the chapter tabs.
</li>
<li>
Fully interactive mini-map. Hover to see the magnifier, and click to jump to any paragraph.
</li>
<li>
Instant search. Highlight a word or phrase to see every occurrence of it highlighted in the mini map. Click a highlight to jump to it.
</li>
<li>
A permanent, fully restorable archive. Get chapters and outlines out of the way without deleting them forever.
</li>
<li>
Data-driven charts and graphs of your work (more to come).
</li>
<li>
Back up your work or download it as a PDF any time.
</li>
</ul>
</div>
<div class="content center">
<a class="content-link" href="/auth">
Get your free account
</a>
</div>
</div>
<div class="background-orange">
<div class="content">
<p>
Edward is still under construction. All your work is saved in the browser, but it could disappear if your browsing data gets cleared. Upcoming features include:
</p>
<ul>
<li>Auto-save your work to the cloud and work on it from any computer, anywhere.</li>
<li>Tools to help you overcome writer's block.</li>
<li>Contextual writing tools like an on-demand dictionary/thesaurus.</li>
<li>Support Edward with a monthly subscription.</li>
<li>And more!</li>
</ul>
</div>
</div>
</body>
</html>