-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
154 lines (152 loc) · 4.99 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Startup Pitch Generator</title>
<link rel="shortcut icon" type="image/x-icon" href="startup-icon.png" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-74378318-4"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-74378318-4");
</script>
<!-- End Google Analytics -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css"
/>
<link rel="stylesheet" type="text/css" href="./styles.css" />
<link
href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Open+Sans&display=swap"
rel="stylesheet"
/>
<script
defer
src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"
></script>
</head>
<body>
<section class="section hero is-info is-medium">
<div class="container hero-body">
<h1 id="main-title" class="title">
Startup Pitch Generator
</h1>
<!-- <h2 class="subtitle">
Subtitle
</h2> -->
<p class="subtitle">
Use a recurrent neural network to help think of your next big idea!
</p>
<button
id="generate-btn"
class="button is-large is-success is-rounded has-text-weight-bold"
onclick="ga('send', {
hitType: 'event',
eventCategory: 'Buttons',
eventAction: 'Clicked',
eventLabel: 'Generate'
});"
>
Generate!
</button>
<div class="columns">
<div class="column">
<div class="card">
<div class="card-content">
<p id="pitch-text" class="title">
<span id="finger">☝️</span> <br />
Click on the button above to get started
</p>
<!-- <p class="subtitle">
</p> -->
</div>
<footer class="card-footer">
<p id="share-twitter" class="card-footer-item">
<span>
<i class="fab fa-twitter"></i> Share on
<a
id="link-twitter"
href="https://twitter.com/intent/tweet?status="
>Twitter</a
>
</span>
</p>
<p id="share-facebook" class="card-footer-item">
<span>
<i class="fab fa-facebook-square"></i> Post on
<a
id="link-facebook"
href="http://www.facebook.com/share.php?u=https://pitchgen.co/"
>Facebook</a
>
</span>
</p>
</footer>
</div>
</div>
</div>
</div>
<div class="container ">
<p class="subtitle">
Stay tuned for more products like this!
</p>
<form
class="field is-grouped"
action="https://getform.io/f/9d0bba9d-b70b-41e8-a83a-b2d97b8fcc63"
method="POST"
>
<div class="control has-icons-left email-wrap">
<input
type="email"
placeholder="[email protected]"
name="email"
id="tlemail"
required
class="input is-primary is-large"
/>
<span class="icon is-small is-left">
<i class="fas fa-envelope"></i>
</span>
</div>
<!-- <a class="button" type="submit" id="tlbutton" value="Subscribe">Send</a> -->
<button
class="button is-warning is-large"
type="submit"
id="tlbutton"
value="Subscribe"
>
Send
</button>
</form>
</div>
<div class="container hero-footer">
<a
class="producthunt"
href="https://www.producthunt.com/posts/pitchgen-co?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-pitchgen-co"
target="_blank"
><img
src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=164820&theme=light"
alt="Pitchgen.co - Use a RNN to help think of your next big idea | Product Hunt Embed"
style="width: 250px; height: 54px;"
width="250px"
height="54px"
/></a>
<a class="footer-links" href="https://www.akinhwan.site"
>Made with 💕 by Akinhwan</a
><br />
<a class="footer-links" href="https://minimaxir.com/"
>textgenrnn 📜 by Max Woolf</a
>
</div>
</section>
<script src="./main.js"></script>
</body>
</html>