-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
301 lines (265 loc) · 15.4 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<title>Cuerre</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="images/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<!-- Top menu -->
<div class="container-fluid m-0 p-0 sticky-top">
<nav class="navbar navbar-expand-lg navbar-light shadow-sm bg-white py-3">
<div class="container px-2">
<a class="navbar-brand" href="#">
<img src="images/logo.png" height="32" alt="" loading="lazy">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#opensource">Opensource</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#creators">Creators</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#license">License</a>
</li>
</ul>
</div>
<a class="btn btn-outline-primary mr-2" href="https://github.com/cuerre/application" role="button" target="_blank">Develop</a>
<a class="btn btn-primary mr-2" href="https://github.com/cuerre/compose-service" role="button" target="_blank">Deploy</a>
</div>
</nav>
</div>
<!-- New age -->
<div class="container-fluid m-0 p-0" id="opensource">
<div class="container-fluid text-muted bg-light py-5">
<div class="container h-100 my-5">
<div class="row my-auto">
<div class="col-lg py-3">
<div>
<p class="h1 font-weight-bold">Now it is opensource</p>
<p class="h5 font-weight-normal">
Cuerre died as comercial project in order to born as a project driven by the community.
It was a hard decition to open months of work.
</p>
<p class="h5 font-weight-normal">
You can help us by developing or buying a coffe to the creators.
</p>
<div class="d-flex mt-5">
<div class="mr-3">
<div>
<a href="#creators" role="button" class="btn btn-outline-primary btn-lg">
<span class="align-middle">Know the creators</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg offset-lg-1 py-3">
<img src="images/screenshots/10.png" class="w-100 shadow-lg rounded">
</div>
</div>
</div>
</div>
</div>
<!-- What is this -->
<div class="container-fluid text-muted bg-white" id="about">
<div class="container h-100 my-5">
<div class="row">
<div class="col-lg py-3">
<img src="images/screenshots/11.png" class="w-100 shadow-lg rounded-lg">
</div>
<div class="col-lg offset-lg-1 py-3">
<div>
<p class="h3 font-weight-bold mb-4">Make QR codes to be useful</p>
<p class="h5 font-weight-normal">
With Cuerre, you can generate or reuse QR codes, know information
about the people who enter them between different marketing campaigns,
and so much more.
</p>
</p> <p class="h5 font-weight-normal mt-4">
Fast • Simple to use • Friendly • Accurate
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Analytics -->
<div class="container-fluid m-0 p-0">
<div class="container-fluid text-muted bg-light py-5">
<div class="container h-100 my-5">
<div class="row my-auto">
<div class="col-lg py-3">
<div>
<p class="h3 font-weight-bold mb-4">Powerful easy statistics</p>
<p class="h5 font-weight-normal">
Know your customers better by operating system,
browser or device type. Find the best moment to launch a product
showing visitors of the last week, last month and even last year.
</p>
<p class="h5 font-weight-normal">
Moreover, we have added some easy-to-understand explanations
to help you interpret the data.
</p>
</div>
</div>
<div class="col-lg offset-lg-1 py-3">
<img src="images/screenshots/12.png" class="w-100 shadow-lg rounded">
</div>
</div>
</div>
</div>
</div>
<!-- Segmentation -->
<div class="container-fluid text-muted bg-white">
<div class="container h-100 my-5">
<div class="row">
<div class="col-lg py-3">
<img src="images/screenshots/13.png" class="w-100 shadow-lg rounded-lg">
</div>
<div class="col-lg offset-lg-1 py-3">
<div>
<p class="h3 font-weight-bold mb-4">Segmentate your customers</p>
<p class="h5 font-weight-normal">
Decide where to send your customers according
to the operating system they come from or send everyone to
the same place. It is your decision!
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Integrations -->
<div class="container-fluid m-0 p-0">
<div class="container-fluid text-muted bg-light py-5">
<div class="container h-100 my-5">
<div class="row my-auto">
<div class="col-lg py-3">
<div>
<p class="h3 font-weight-bold mb-4">Integrations done in minutes</p>
<p class="h5 font-weight-normal">
Cuerre has an API that is easy to use and well documented
</p>
<p class="h5 font-weight-normal">
In about 10 minutes can be integrated in almost
everything, for example: your application
</p>
</div>
</div>
<div class="col-lg offset-lg-1 py-3">
<img src="images/screenshots/14.png" class="w-100 shadow-lg rounded">
</div>
</div>
</div>
</div>
</div>
<!-- People behind the scene -->
<div class="container-fluid text-muted bg-white pt-5" id="creators">
<div class="container h-100 py-5">
<div class="row justify-content-center">
<div class="col-lg-8">
<p class="h3 font-weight-bold mb-4 align-self-center text-center">People behind the scene</p>
<p class="h5 font-weight-normal align-self-center text-center">
Founded in 2019 by engineer Alby Hernández,
Cuerre had the mission to provide the most valuable service for QR codes at global scale.
It process and uses big data to produce our accurate statistics, QR creation and reading and other super fast tools.
</p>
</div>
</div>
<div class="row justify-content-center mt-5">
<div class="col-lg-4 py-3">
<div class="d-flex flex-column align-items-center">
<img src="images/people/face-alby.png" class="rounded-circle" style="width: 14rem;">
<p class="mt-3 h5 font-weight-bolder">Alby Hernández</p>
<p>Founder & Developer</p>
<a class="btn btn-outline-secondary" href="https://achetronic.com" role="button" target="_blank">Know more</a>
</div>
</div>
<div class="col-lg-4 py-3">
<div class="d-flex flex-column align-items-center">
<img src="images/people/face-kevin.png" class="rounded-circle" style="width: 14rem;">
<p class="mt-3 h5 font-weight-bolder">Kevin Machuca</p>
<p>Developer</p>
<a class="btn btn-outline-secondary" href="#" role="button" target="_blank">Know more</a>
</div>
</div>
</div>
</div>
</div>
<!-- License -->
<div class="container-fluid text-muted bg-light pt-5" id="license">
<div class="container h-100 py-5">
<div class="row justify-content-center">
<div class="col-lg-8">
<p class="h3 font-weight-bold mb-4 align-self-center text-center">License</p>
<p class="h5 font-weight-normal align-self-center text-center">
Let's keep it simple, so we distribute our software under
</p>
<p class="h5 font-weight-normal align-self-center text-center">
<a href="https://www.gnu.org/licenses/gpl-3.0.html" target="_blank">GNU GPLv3</a>
</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="container-fluid text-muted bg-light pt-5">
<div class="container text-muted py-3">
<div class="row p-3 justify-content-center">
<div class="col-auto mr-auto">
<a><span class="font-weight-bolder">Project</span></a>
<a href="https://github.com/cuerre/compose-service" class="d-block small text-muted" target="_blank">Deploy</a>
</div>
<div class="col-auto">
<span class="font-weight-bolder">Community</span>
<a href="https://github.com/cuerre/application" class="d-block small text-muted" target="_blank">Develop</a>
</div>
<div class="col-auto ml-auto">
<span class="font-weight-bolder">Creators</span>
<a href="https://achetronic.com" class="d-block small text-muted" target="_blank">Alby Hernández</a>
<a href="#" class="d-block small text-muted" target="_blank">Kevin Machuca</a>
</div>
</div>
<div class="row text-muted px-3 mb-5">
<div class="col">
<img src="images/logo-footer.png" class="align-middle mr-2" style="max-height: 1rem;">
</div>
</div>
</div>
</div>
<!-- jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>