-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
726 lines (608 loc) · 17.8 KB
/
Copy pathindex.html
File metadata and controls
726 lines (608 loc) · 17.8 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
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
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intorium</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Inter',sans-serif;
background:#ffffff;
color:#1d1d1f;
overflow-x:hidden;
}
header{
position:fixed;
top:0;
left:0;
width:100%;
backdrop-filter:blur(20px);
background:rgba(255,255,255,.8);
border-bottom:1px solid #e5e5e5;
z-index:999;
}
.nav{
max-width:1400px;
margin:auto;
padding:18px 30px;
display:flex;
justify-content:space-between;
align-items:center;
}
.logo{
font-size:24px;
font-weight:700;
}
.nav a{
text-decoration:none;
color:#1d1d1f;
margin-left:25px;
font-size:14px;
}
.hero{
min-height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:120px 20px 80px;
background:
radial-gradient(circle at top,#dfe9ff 0%,#ffffff 60%);
}
.hero h1{
font-size:clamp(48px,8vw,110px);
font-weight:800;
letter-spacing:-3px;
}
.hero p{
max-width:850px;
margin-top:25px;
font-size:24px;
color:#6e6e73;
line-height:1.5;
}
.hero-buttons{
margin-top:40px;
}
.btn{
display:inline-block;
padding:16px 34px;
border-radius:999px;
text-decoration:none;
font-weight:600;
transition:.3s;
}
.btn-primary{
background:#0071e3;
color:white;
}
.btn-primary:hover{
background:#0062c5;
}
.btn-secondary{
border:1px solid #0071e3;
color:#0071e3;
margin-left:15px;
}
.section{
padding:120px 8%;
}
.section-title{
text-align:center;
margin-bottom:70px;
}
.section-title h2{
font-size:56px;
margin-bottom:15px;
}
.section-title p{
color:#6e6e73;
font-size:20px;
}
.grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:30px;
}
.card{
background:#f5f5f7;
border-radius:30px;
overflow:hidden;
transition:.4s;
display:flex;
flex-direction:column;
border: solid #1c1c1e 1px;
}
.card:hover{
transform:translateY(-8px);
}
.card img{
width:100%;
height:260px;
object-fit:contain;
object-position:center;
background:#fff;
padding:15px;
}
.card-content{
padding:35px;
display:flex;
flex-direction:column;
flex:1;
}
.card h3{
font-size:30px;
margin-bottom:12px;
}
.card p{
color:#6e6e73;
line-height:1.7;
flex-grow:1;
}
.price{
margin-top:20px;
font-size:24px;
font-weight:700;
}
.dark{
background:#000;
color:#fff;
}
.dark .section-title p{
color:#a1a1a6;
}
.dark .card{
background:#1c1c1e;
}
.dark .card p{
color:#b5b5b7;
}
.feature{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
max-width:1400px;
margin:auto;
}
.feature h2{
font-size:72px;
line-height:1;
margin-bottom:20px;
}
.feature p{
font-size:22px;
color:#86868b;
line-height:1.6;
}
.feature img{
width:100%;
border-radius:30px;
}
footer{
padding:60px 20px;
text-align:center;
border-top:1px solid #e5e5e5;
}
footer p{
color:#86868b;
}
@media(max-width:1200px){
.grid{
grid-template-columns:repeat(4,1fr);
}
}
@media(max-width:900px){
.grid{
grid-template-columns:repeat(2,1fr);
}
.feature{
grid-template-columns:1fr;
}
.feature h2{
font-size:52px;
}
.section-title h2{
font-size:42px;
}
}
@media(max-width:600px){
.grid{
grid-template-columns:1fr;
}
}
</style>
</head>
<body>
<header>
<div class="nav">
<div class="logo">Intorium</div>
<div>
<a href="#basic">Basic</a>
<a href="#blockchain">Blockchain</a>
<a href="#ia">IA</a>
</div>
</div>
</header>
<section class="hero">
<h1>Robots Built For Communities</h1>
<p>
Discover a complete ecosystem of Telegram Bots. Basic. Blockchain. IA ... Designed to power modern digital
communities.
</p>
<div class="hero-buttons">
<a href="#basic" class="btn btn-primary">Explore Bots</a>
<a href="https://github.com/Intorium" class="btn btn-secondary">GitHub</a>
</div>
</section>
<section class="section">
<div class="feature">
<div>
<h2>One Ecosystem</h2>
<p>
Intorium combines telegram community,
blockchain and
artificial intelligence into a single collection of robots.
</p>
</div>
<img src="image/general.jpg" alt="">
</div>
</section>
<section id="basic" class="section">
<div class="section-title">
<h2>Telegram Group Bot (Basic)</h2>
<p>Everything your community needs.</p>
</div>
<div class="grid">
<div class="card">
<img src="image/oracle.jpg">
<div class="card-content">
<h3>Oracle</h3>
<p>Entertainment in the form of a list with 100 creative and motivational quotes about technology and development</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/info.jpg">
<div class="card-content">
<h3>Info</h3>
<p>Necessary technical information regarding group identification and topics</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/clock.jpg">
<div class="card-content">
<h3>Clock</h3>
<p>A clock that can display the time in each user's country, so they can know when their friends are sleeping</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/translator.jpg">
<div class="card-content">
<h3>Translator</h3>
<p>Translate user messages, you choose the base language and the language you want to translate to</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/spam.jpg">
<div class="card-content">
<h3>Spam</h3>
<p>Make memes of your friends with funny phrases, everyone will have fun</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/star.jpg">
<div class="card-content">
<h3>Star</h3>
<p>Show notifications in the group of stars that have been earned</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/encrypt.jpg">
<div class="card-content">
<h3>Encrypt</h3>
<p>Encrypt public group messages</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/decrypt.jpg">
<div class="card-content">
<h3>Decrypt</h3>
<p>Decrypt messages from the public group</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/qrcode.jpg">
<div class="card-content">
<h3>QRCode</h3>
<p>Create QR Code from internet addresses</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/adm.jpg">
<div class="card-content">
<h3>ADM</h3>
<p>Receive a CSV file containing all the permissions of all group administrators, a practical way to check for hidden permissions</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/telegraph.jpg">
<div class="card-content">
<h3>Telegraph</h3>
<p>Telegraph public group</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/face.jpg">
<div class="card-content">
<h3>Face</h3>
<p>Entertainment in the form of a list with 100 different and creative faces made with emojis</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/user.jpg">
<div class="card-content">
<h3>User</h3>
<p>Download the list of public users from any telegram group</p>
<div class="price">$10</div>
</div>
</div>
<div class="card">
<img src="image/chess.jpg">
<div class="card-content">
<h3>Chess</h3>
<p>For those who enjoy playing, the group can also watch the matches</p>
<div class="price">$10</div>
</div>
</div>
</div>
</section>
<section id="blockchain" class="section dark">
<div class="section-title">
<h2>Telegram Group Bot (Blockchain)</h2>
<p>Built for Waves and Waves forks.</p>
</div>
<div class="grid">
<div class="card">
<img src="image/link.jpg">
<div class="card-content">
<h3>Link</h3>
<p>A list of useful links that can be delivered on a scheduled basis to the group, very good for guides and topics</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/ticker.jpg">
<div class="card-content">
<h3>Ticker</h3>
<p>Ticker price for coin</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/shell.jpg">
<div class="card-content">
<h3>Shell</h3>
<p>Several useful code snippets that you can use on your server or locally</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/python.jpg">
<div class="card-content">
<h3>Python</h3>
<p>Several useful code snippets that you can use to study Python</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/conf.jpg">
<div class="card-content">
<h3>Conf</h3>
<p>Useful settings for waves forks, in a more generic and broad way</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/node.jpg">
<div class="card-content">
<h3>Node</h3>
<p>Useful configurations for waves forks, in a more complete way, with more parameters</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/ride.jpg">
<div class="card-content">
<h3>Ride</h3>
<p>Several examples of useful V3 contracts</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/order.jpg">
<div class="card-content">
<h3>Order</h3>
<p>See all open orders on the decentralized exchange</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/arbitrage.jpg">
<div class="card-content">
<h3>Arbitrage</h3>
<p>Perform asset arbitrage and find profits, there are many robots competing, but you can join the game</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/stop-limit.jpg">
<div class="card-content">
<h3>Stop-limit</h3>
<p>A stop-limit order triggers a limit order once the stop price is reached</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/trade.jpg">
<div class="card-content">
<h3>Trade</h3>
<p>Basic trading robot for waves tokens</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/trojan.jpg">
<div class="card-content">
<h3>Trojan</h3>
<p>Advanced trading robot for waves tokens</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/distribution.jpg">
<div class="card-content">
<h3>Distribution</h3>
<p>See how your assets are distributed among users wallets</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/orderbook.jpg">
<div class="card-content">
<h3>Orderbook</h3>
<p>See the 5 best buy and sell orders for your asset on the decentralized exchange</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/transaction.jpg">
<div class="card-content">
<h3>Transaction</h3>
<p>See your asset transfers happening on the blockchain in real time</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/exchange.jpg">
<div class="card-content">
<h3>Exchange</h3>
<p>See the exchanges of your asset happening on the blockchain in real time</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/nft.jpg">
<div class="card-content">
<h3>NFT</h3>
<p>Create NFTs for your group's users quickly and easily, using only command messages</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/payment.jpg">
<div class="card-content">
<h3>Payment</h3>
<p>A simple and fast payment method that allows you to deliver content to the user who makes the payment</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/airdrop.jpg">
<div class="card-content">
<h3>Airdrop</h3>
<p>Allow users in your group to register a wallet to receive a daily amount of assets that you select</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/tip.jpg">
<div class="card-content">
<h3>Tip</h3>
<p>Allow users in your group to donate assets to each other, it's a way to bring more interactivity to your group</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/vote.jpg">
<div class="card-content">
<h3>Vote</h3>
<p>Create polls within the group, and users can vote by depositing assets, each asset represents one vote</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/gateway.jpg">
<div class="card-content">
<h3>Gateway</h3>
<p>A waves fork bridging system operated entirely by message commands</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/swap.jpg">
<div class="card-content">
<h3>Swap</h3>
<p>A system for exchanging all base currencies across all waves forks with publicly available nodes</p>
<div class="price">$20</div>
</div>
</div>
<div class="card">
<img src="image/amm.jpg">
<div class="card-content">
<h3>AMM</h3>
<p>Centralized pool with rate parameters that you can set</p>
<div class="price">$20</div>
</div>
</div>
</div>
</section>
<section id="ia" class="section">
<div class="section-title">
<h2>Telegram Group Bot (IA)</h2>
<p>Professional AI chatbot and AI agent.</p>
</div>
<div class="grid">
<div class="card">
<img src="image/ia.jpg">
<div class="card-content">
<h3>IA</h3>
<p>Artificial intelligence conversing with group users is all they want</p>
<div class="price">$30</div>
</div>
</div>
<div class="card">
<img src="image/data.jpg">
<div class="card-content">
<h3>Data</h3>
<p>Virtual assistant to perform daily tasks</p>
<div class="price">$30</div>
</div>
</div>
</div>
</section>
<footer>
<p>
© 2026 Intorium. BOT | Blockchain | IA. Buy and Support: <a href="https://t.me/tao_314_bot">Tao</a>
</p>
</footer>
</body>
</html>