This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
623 lines (575 loc) · 40.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
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="logo-color.svg">
<link rel="icon" href="logo-color.svg">
<link rel="manifest" href="manifest.json">
<meta name="msapplication-TileColor" content="#0ed3cf">
<meta name="theme-color" content="#0ed3cf">
<meta name="twitter:site" content="https://awakari.com" />
<meta name="twitter:title" content="Awakari" />
<meta name="twitter:description" content="Event-driven search. For faster and valuable decisions." />
<meta name="twitter:image" content="logo-color.svg" />
<title>Awakari</title>
<script>
navigator.serviceWorker.register("sw.js");
</script>
<script src="script.js"></script>
<script src="alpinejs-3.13.0.min.js" defer></script>
</head>
<body class="bg-gray-200">
<main>
<header class="bg-white dark:bg-gray-900">
<nav x-data="{ isOpen: false }" class="container mx-auto p-2 lg:flex lg:items-center lg:justify-between">
<div class="flex items-center justify-between">
<span class="flex">
<a class="text-2xl font-bold text-gray-800 hover:text-gray-700 dark:text-white dark:hover:text-gray-300 lg:text-3xl py-2 px-1" href="#">Awakari</a>
</span>
<!-- Mobile menu button -->
<div class="flex lg:hidden">
<button x-cloak @click="isOpen = !isOpen" type="button" class="text-gray-500 hover:text-gray-600 focus:text-gray-600 focus:outline-none dark:text-gray-200 dark:hover:text-gray-400 dark:focus:text-gray-400" aria-label="toggle menu">
<svg x-show="!isOpen" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 8h16M4 16h16" />
</svg>
<svg x-show="isOpen" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
</div>
<!-- Mobile Menu open: "block", Menu closed: "hidden" -->
<div x-cloak :class="[isOpen ? 'translate-x-0 opacity-100 ' : 'opacity-0 -translate-x-full']" class="absolute inset-x-0 z-20 w-full bg-white px-6 py-4 shadow-md transition-all duration-300 ease-in-out dark:bg-gray-900 lg:relative lg:top-0 lg:mt-0 lg:flex lg:w-auto lg:translate-x-0 lg:items-center lg:bg-transparent lg:p-0 lg:opacity-100 lg:shadow-none lg:dark:bg-transparent">
<div class="flex flex-col space-y-4 lg:mt-0 lg:flex-row lg:space-y-0">
<a class="text-gray-700 hover:text-blue-700 dark:text-gray-200 dark:hover:text-blue-400 lg:mx-6" href="#about">About</a>
<a class="text-gray-700 hover:text-blue-700 dark:text-gray-200 dark:hover:text-blue-400 lg:mx-6" href="#use_cases">Use Cases</a>
<a class="text-gray-700 hover:text-blue-700 dark:text-gray-200 dark:hover:text-blue-400 lg:mx-6" href="#solutions">Solutions</a>
<a class="text-gray-700 hover:text-blue-700 dark:text-gray-200 dark:hover:text-blue-400 lg:mx-6" href="#pricing">Pricing</a>
<a class="text-gray-700 hover:text-blue-700 dark:text-gray-200 dark:hover:text-blue-400 lg:mx-6" href="#resources">Resources</a>
<a class="text-gray-700 hover:text-blue-700 dark:text-gray-200 dark:hover:text-blue-400 lg:mx-6" href="mailto:[email protected]">Contact ⧉</a>
</div>
</div>
</nav>
<div class="container mx-auto py-2 items-center justify-center">
<div class="mx-auto max-w-4xl grid sm:grid-cols-1 md:grid-cols-3">
<span class="py-4 items-center text-center">
<p class="m-1 text-4xl font-semibold text-indigo-700">
Reach everyone interested
</p>
</span>
<div class="items-center justify-center">
<center>
<img src="logo-color.svg" width="256" class="items-center justify-center"/>
</center>
</div>
<div class="py-4 align-middle items-center text-center">
<h1 class="m-1 text-4xl font-semibold text-cyan-700">
Capture the most important
</h1>
</div>
</div>
<div class="container items-center justify-center py-4">
<center>
<button type="button" class="text-white text-lg w-56 h-12 bg-gradient-to-r from-indigo-600 hover:from-indigo-500 to-cyan-600 hover:to-cyan-500 focus:outline-none font-bold rounded-md px-5 py-2 text-center">
<a href="https://awakari.cloud">Start for Free</a>
</button>
</center>
</div>
</div>
</header>
<div class="bg-white dark:bg-gray-900" id="about">
<div class="container mx-auto px-6 pt-8">
<div class="mx-auto mt-6 flex">
<h1 class="text-3xl font-semibold capitalize text-gray-700 dark:text-white lg:text-4xl">About</h1>
</div>
<div class="mx-auto max-w-6xl mt-2">
<h2 class="text-2xl px-2 py-2 capitalize text-gray-800 dark:text-white">Event-Driven Reverse Search</h2>
<div class="grid xs:grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-2">
<div class="space-y-2 py-4 text-lg text-gray-700">
<p class="align-text-middle px-2 py-2">
Stay informed in the real-time. No more repeating searches.
</p>
<p class="px-2 py-2 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max min-h-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Saves your time</span>
</p>
<p class="px-2 py-2 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max min-h-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Reduces the cost removing the dry polls with no new results</span>
</p>
<p class="px-2 py-2 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max min-h-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Reduces the latency</span>
</p>
<p class="px-2 py-2 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max min-h-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Finds all queries by an incoming event at once. Most cost-efficient when query number grows.</span>
</p>
</div>
<div>
<img src="data-value-vs-time.svg" alt="figure: data value vs time"/>
</div>
</div>
</div>
<div class="mx-auto max-w-6xl mt-8">
<h2 class="px-2 py-4 capitalize text-gray-700 dark:text-white text-2xl">Publishing Sources</h2>
<div class="grid xs:grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-2 text-gray-700">
<div class="flex justify-end">
<img src="how-it-works.svg" alt="add own pub src"/>
</div>
<div class="space-y-4 py-4 text-lg">
<p class="align-text-middle px-2 pt-2">
Already available event sources:
</p>
<p class="px-4 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>90+ Feeds (RSS/Atom/JSON)</span>
</p>
<p class="px-4 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>60+ Telegram Channels</span>
</p>
<p class="px-4 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>30+ Web Sites</span>
</p>
<p class="px-4 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Messages published by others</span>
</p>
<p class="align-text-middle px-4 text-lg">
Add your own RSS Feed, Telegram Channel or Web Site.
</p>
<p class="align-text-middle px-4 text-lg">
More sources coming soon.
</p>
</div>
</div>
</div>
<div class="mx-auto max-w-6xl mt-8">
<h2 class="px-2 py-4 capitalize text-gray-700 dark:text-white text-2xl">Query Subscriptions</h2>
<div class="grid xs:grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-2 text-gray-700">
<div class="space-y-4 py-4 text-lg">
<p class="px-4 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Group conditions using operators like "And", "Or", ... </span>
</p>
<p class="px-4 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Match text keywords</span>
</p>
<p class="px-4 align-text-middle space-x-2 flex">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 min-w-max text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span>Match numbers using operators like "<", "=", "≥", ...</span>
</p>
</div>
<div class="flex justify-start px-16">
<img src="photo_5352989553037791923_y.jpg" alt="subscription" class="w-72"/>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white dark:bg-gray-900" id="use_cases">
<div class="container mx-auto px-6 pt-8">
<div class="mt-6 md:flex md:items-center md:justify-between">
<div>
<h1 class="text-3xl font-semibold capitalize text-gray-800 dark:text-white lg:text-4xl">Use Cases</h1>
</div>
</div>
<div class="xl:-mx-8 xl:flex items-center justify-center">
<div class="xl:mx-8 max-w-6xl items-center justify-center">
<div class="mt-8 mt-2 grid xs:grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-2 items-center justify-center">
<div class="mx-auto max-w-sm rounded-lg border dark:border-gray-700 md:mx-4 my-4" style="height: 480px">
<div class="p-6 space-y-4">
<div class="flex">
<img src="insight-icon.svg" alt="Real-Time Insights" class="w-8 h-8 mr-2"/>
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white lg:text-3xl">Business Insights</h1>
</div>
<p class="text-slate-600 dark:text-gray-300">
Connect to various data sources relevant to the business, such as social media feeds, news sources, industry reports, financial markets, and internal data systems.
</p>
<p class="text-slate-600 dark:text-gray-300">
Subscribe for specific keywords, topics, and queries related to the business's interests, including brand mentions, industry trends, competitor activities, and market events.
</p>
<p class="text-slate-600 dark:text-gray-300">
Business leaders can make data-driven decisions faster, responding promptly to risks, opportunities and trends.
</p>
</div>
</div>
<div class="mx-auto max-w-sm rounded-lg border dark:border-gray-700 md:mx-4 my-4" style="height: 480px">
<div class="p-6 space-y-4">
<div class="flex">
<img src="share-icon.svg" alt="Real-Time Insights" class="w-8 h-8 mr-2"/>
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white lg:text-3xl">Media Monitoring</h1>
</div>
<p class="text-slate-600 dark:text-gray-300">
Connect to a wide range of data sources, including social media platforms, news websites, blogs, forums, and other online communities.
</p>
<p class="text-slate-600 dark:text-gray-300">
Subscribe for specific persons, brands, topics, trends, activities, and events.
</p>
<p class="text-slate-600 dark:text-gray-300">
Staying informed helps individuals or organizations proactively manage their online presence and reputation.
</p>
</div>
</div>
<div class="mx-auto max-w-sm rounded-lg border dark:border-gray-700 md:mx-4 my-4" style="height: 480px">
<div class="p-6 space-y-4">
<div class="flex">
<img src="target-icon.svg" alt="Customer Targeting" class="w-8 h-8 mr-2"/>
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white lg:text-3xl">Customer Targeting</h1>
</div>
<p class="text-slate-600 dark:text-gray-300">
Engage actively with potential customers by publishing offers that are received by everyone interested.
This enables businesses to proactively reach out to potential customers with relevant information, offers, or content.
</p>
<p class="text-slate-600 dark:text-gray-300">
Published events have an immediate impact as they are received by users in real-time.
Targeted messages increase the likelihood of conversion and customer acquisition.
</p>
</div>
</div>
<div class="mx-auto max-w-sm rounded-lg border dark:border-gray-700 md:mx-4 my-4" style="height: 480px">
<div class="p-6 space-y-4">
<div class="flex">
<img src="cloud-services-icon.svg" alt="services" class="w-8 h-8 mr-2"/>
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white lg:text-3xl">And Much More...</h1>
</div>
<p class="text-slate-600 dark:text-gray-300">
<b>Real Estate</b>: subscribe for notifications about new properties that match a criteria, simplifying their search process.
</p>
<p class="text-slate-600 dark:text-gray-300">
<b>Recruitment</b>: publish a CV or a job description, find a dream job or candidate.
</p>
<p class="text-slate-600 dark:text-gray-300">
<b>Science</b>: researchers can monitor journals and databases for the latest publications and developments.
</p>
<p class="text-slate-600 dark:text-gray-300">
<b>Entertainment</b>: discover and receive notifications about upcoming concerts, movie releases, theater shows, etc.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white dark:bg-gray-900" id="solutions">
<div class="container mx-auto px-6 pt-8 space-y-4 text-gray-700">
<div class="mt-6 md:flex md:items-center md:justify-between">
<h1 class="text-3xl font-semibold capitalize dark:text-white lg:text-4xl">Solutions</h1>
</div>
<h2 class="text-2xl capitalize dark:text-white">Serverless</h2>
<div class="mt-8 space-y-8 md:flex md:space-y-0 xl:mt-2">
<div class="w-72">
<div class="flex items-center py-2">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-400" viewBox="0 0 20 20"
fill="currentColor">
<path fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
clip-rule="evenodd"/>
</svg></span>
<span class="mx-2 text-gray-600 dark:text-gray-300">
No deployment required
</span>
</div>
<div class="flex items-center py-2">
<span class="h-6 w-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-400" viewBox="0 0 20 20"
fill="currentColor">
<path fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
clip-rule="evenodd"/>
</svg></span>
<span class="mx-2 text-gray-600 dark:text-gray-300">
Ready to use public event sources
</span>
</div>
<div class="flex items-center py-2">
<span class="h-6 w-6"><svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-400" viewBox="0 0 20 20"
fill="currentColor">
<path fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
clip-rule="evenodd"/>
</svg></span>
<span class="mx-2 text-gray-600 dark:text-gray-300">
Free single subscription that never expires
</span>
</div>
</div>
<div class="mx-auto max-w-sm rounded-md border dark:border-gray-700 md:mx-4 w-72">
<div class="p-6">
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white font-semibold flex items-center justify-center">Public UI</h1>
<p class="mt-4 text-gray-600 dark:text-gray-300">
Easy way to manage publishing and subscriptions.
</p>
<p class="mt-4 text-gray-600 dark:text-gray-300">Best for personal use.</p>
<a href="https://awakari.cloud">
<button class="mt-6 w-full transform rounded-md bg-slate-500 px-4 py-2 capitalize tracking-wide text-white transition-colors duration-300 hover:bg-slate-600 focus:bg-slate-500 focus:outline-none focus:ring focus:ring-slate-300 focus:ring-opacity-80">
Start Now
</button>
</a>
</div>
<hr class="border-gray-200 dark:border-gray-700" />
<div class="p-6">
<div class="space-y-4">
<div class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">Free to use</span>
</div>
<div class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">Adding own sources</span>
</div>
</div>
</div>
</div>
<div class="mx-auto max-w-sm rounded-md border dark:border-gray-700 md:mx-4 w-72">
<div class="p-6">
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white font-semibold flex items-center justify-center">Public API</h1>
<p class="mt-4 text-gray-600 dark:text-gray-300">
Want to build own service?<br/>
Try the Awakari streaming API.
</p>
<p class="mt-4 text-gray-600 dark:text-gray-300">Best for client integrations.</p>
<a href="https://github.com/awakari#3-access">
<button class="mt-6 w-full transform rounded-md bg-slate-500 px-4 py-2 capitalize tracking-wide text-white transition-colors duration-300 hover:bg-slate-600 focus:bg-slate-500 focus:outline-none focus:ring focus:ring-slate-300 focus:ring-opacity-80">
Learn More
</button>
</a>
</div>
<hr class="border-gray-200 dark:border-gray-700" />
<div class="p-6">
<div class="space-y-4">
<div class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">Free first 30 days of access</span>
</div>
<div class="flex items-center">
<span class="h-5 w-5">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</span>
<span class="mx-2 text-gray-600 dark:text-gray-300">Free first 10 pubs per day</span>
</div>
</div>
</div>
</div>
</div>
<h2 class="text-2xl capitalize dark:text-white">Dedicated</h2>
<div class="mt-8 space-y-8 md:flex md:space-y-0 xl:mt-2">
<div class="w-72">
<div class="flex items-center py-2">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-400" viewBox="0 0 20 20"
fill="currentColor">
<path fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
clip-rule="evenodd"/>
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">
Private event sources
</span>
</div>
<div class="flex items-center py-2">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-400" viewBox="0 0 20 20"
fill="currentColor">
<path fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
clip-rule="evenodd"/>
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">
Unlimited message publications
</span>
</div>
<div class="flex items-center py-2">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-400" viewBox="0 0 20 20"
fill="currentColor">
<path fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
clip-rule="evenodd"/>
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">
Unlimited subscriptions
</span>
</div>
</div>
<div class="mx-auto max-w-sm rounded-md border dark:border-gray-700 md:mx-4 w-72">
<div class="p-6">
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white font-semibold flex items-center justify-center">Cloud Instance</h1>
<p class="mt-4 text-gray-600 dark:text-gray-300">Don't want to publish your events to everyone?</p>
<p class="mt-4 text-gray-600 dark:text-gray-300">Private event sources.</p>
<a href="mailto:[email protected]">
<button class="mt-6 w-full transform rounded-md bg-slate-500 px-4 py-2 capitalize tracking-wide text-white transition-colors duration-300 hover:bg-slate-600 focus:bg-slate-500 focus:outline-none focus:ring focus:ring-slate-300 focus:ring-opacity-80">
Contact
</button>
</a>
</div>
<hr class="border-gray-200 dark:border-gray-700" />
<div class="p-6">
<div class="space-y-4">
<div class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">No deployment required</span>
</div>
</div>
</div>
</div>
<div class="mx-auto max-w-sm rounded-md border dark:border-gray-700 md:mx-4 w-72">
<div class="p-6">
<h1 class="text-xl font-medium capitalize text-gray-700 dark:text-white font-semibold flex items-center justify-center">Events On Premises</h1>
<p class="mt-4 text-gray-600 dark:text-gray-300">Want all events to remain inside your network?</p>
<p class="mt-4 text-gray-600 dark:text-gray-300">Subscriptions only in the cloud.</p>
<a href="https://github.com/awakari/core#3-deployment">
<button class="mt-6 w-full transform rounded-md bg-slate-500 px-4 py-2 capitalize tracking-wide text-white transition-colors duration-300 hover:bg-slate-600 focus:bg-slate-500 focus:outline-none focus:ring focus:ring-slate-300 focus:ring-opacity-80">
Learn More
</button>
</a>
</div>
<hr class="border-gray-200 dark:border-gray-700" />
<div class="p-6">
<div class="space-y-4">
<div class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-blue-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span class="mx-2 text-gray-600 dark:text-gray-300">Strict events privacy</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white dark:bg-gray-900" id="pricing">
<div class="container mx-auto px-6 pt-8 space-y-4">
<div class="mt-6 md:flex md:items-center md:justify-between">
<div>
<h1 class="text-3xl font-semibold capitalize text-gray-700 dark:text-white lg:text-4xl">Pricing</h1>
</div>
</div>
<div class="mt-4 space-y-2 text-gray-700">
<p>Telegram Bot interface is completely free to use (donations are welcome).</p>
<p>For other price options, <a href="mailto:[email protected]" style="color: #1d4ed8">contact</a>.</p>
</div>
</div>
</div>
<div class="bg-white dark:bg-gray-900" id="resources">
<div class="container mx-auto px-6 pt-8 space-y-4 text-gray-600">
<div class="mt-6 md:flex md:items-center md:justify-between">
<div>
<h1 class="text-3xl lg:text-4xl font-semibold capitalize dark:text-white">Resources</h1>
</div>
</div>
<div class="grid lg:grid-cols-5 md:grid-cols-2 sm:grid-cols-1">
<div class="pt-4 space-y-2">
<h3 class="text-xl capitalize dark:text-white">Articles</h3>
<div class="pt-2 space-y-2">
<p><a href="https://habr.com/ru/articles/771874/" style="color: #1d4ed8">https://habr.com/ru/articles/771874/</a></p>
<p><a href="https://habr.com/ru/articles/767662/" style="color: #1d4ed8">https://habr.com/ru/articles/767662/</a></p>
<p><a href="https://habr.com/ru/articles/767422/" style="color: #1d4ed8">https://habr.com/ru/articles/767422/</a></p>
<p><a href="https://habr.com/ru/articles/742972/" style="color: #1d4ed8">https://habr.com/ru/articles/742972/</a></p>
</div>
</div>
<div class="pt-4 space-y-2">
<h2 class="text-xl capitalize dark:text-white">Posts</h2>
<div class="space-y-2">
<p><a href="https://news.ycombinator.com/item?id=38143228" style="color: #1d4ed8">Show HN</a></p>
</div>
</div>
<div class="pt-4 space-y-2">
<h2 class="text-xl capitalize dark:text-white">Community</h2>
<div class="space-y-2">
<p><a href="https://github.com/awakari" style="color: #1d4ed8">GitHub</a></p>
<p><a href="https://www.reddit.com/r/awakari/" style="color: #1d4ed8">Reddit</a></p>
<p><a href="https://t.me/awakari" style="color: #1d4ed8">Telegram</a></p>
<p><a href="https://www.saashub.com/awakari" style="color: #1d4ed8">SaasHub</a></p>
<p><a href="https://www.indiegogo.com/projects/--2810259/coming_soon/x/35869246" style="color: #1d4ed8">Indiegogo</a></p>
</div>
</div>
<div class="pt-4 space-y-2">
<h2 class="text-xl capitalize dark:text-white">Documentation</h2>
<div class="space-y-2">
<p><a href="https://awakari.app/help" style="color: #1d4ed8">Telegram Bot</a></p>
<p><a href="https://github.com/awakari/core#32-connect-subscriptions" style="color: #1d4ed8">Subscriptions Access</a></p>
<p><a href="https://github.com/awakari/core#42-api" style="color: #1d4ed8">Core API</a></p>
<p><a href="https://github.com/awakari/client-sdk-go" style="color: #1d4ed8">Client SDK</a></p>
<p><a href="https://github.com/awakari/.github/blob/master/ROADMAP.md" style="color: #1d4ed8">Roadmap</a></p>
<p><a href="https://github.com/awakari/webapp#1-usage" style="color: #1d4ed8">Demo Web UI</a></p>
</div>
</div>
<div class="pt-4 space-y-2">
<h2 class="text-xl capitalize dark:text-white">Other</h2>
<div class="space-y-2">
<p><a href="tos.html" style="color: #1d4ed8">Terms of Service</a></p>
<p><a href="privacy.html" style="color: #1d4ed8">Privacy Policy</a></p>
</div>
</div>
</div>
</div>
</div>
<footer class="bg-white dark:bg-gray-900">
<div class="container mx-auto px-6 py-20">
<hr class="my-6 border-gray-200 dark:border-gray-700 md:my-8" />
<center><small class="text-slate-500">© Awakari</small></center>
</div>
</footer>
</main>
</body>
</html>