-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenglish.html
927 lines (809 loc) · 61.6 KB
/
english.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
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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image:src" content="">
<meta property="og:image" content="">
<meta name="twitter:title" content="English">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="assets/images/icons8-lizard-96-96x96-96x96.png" type="image/x-icon">
<meta name="description" content="Site da comunidade Bolha Tech">
<title>English</title>
<link rel="stylesheet" href="assets/web/assets/mobirise-icons2/mobirise2.css">
<link rel="stylesheet" href="assets/web/assets/mobirise-icons/mobirise-icons.css">
<link rel="stylesheet" href="assets/web/assets/mobirise-icons-bold/mobirise-icons-bold.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="assets/dropdown/css/style.css">
<link rel="stylesheet" href="assets/socicon/css/styles.css">
<link rel="stylesheet" href="assets/theme/css/style.css">
<link rel="preload" href="https://fonts.googleapis.com/css?family=Space+Grotesk:300,400,500,600,700&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Space+Grotesk:300,400,500,600,700&display=swap"></noscript>
<link rel="preload" as="style" href="assets/mobirise/css/mbr-additional.css"><link rel="stylesheet" href="assets/mobirise/css/mbr-additional.css" type="text/css">
</head>
<body>
<section data-bs-version="5.1" class="menu menu2 cid-tIHC424LIb" once="menu" id="menu2-3p">
<nav class="navbar navbar-dropdown navbar-fixed-top navbar-expand-lg">
<div class="container-fluid">
<div class="navbar-brand">
<span class="navbar-caption-wrap"><a class="navbar-caption text-white text-primary display-7" href="https://bolha.io">Bolha.io</a></span>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbarSupportedContent" data-bs-target="#navbarSupportedContent" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown nav-right" data-app-modern-menu="true"><li class="nav-item dropdown"><a class="nav-link link text-white text-primary dropdown-toggle display-4" href="english.html" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside" aria-expanded="false">English</a><div class="dropdown-menu" aria-labelledby="dropdown-610"><a class="text-white text-primary dropdown-item display-4" href="english.html">Home</a><a class="text-white text-primary dropdown-item display-4" href="about.html">About us</a><a class="text-white text-primary dropdown-item display-4" href="guardians.html">Our team</a><a class="text-white text-primary dropdown-item display-4" href="https://bolha.blog/bolhaverso" target="_blank">Our Blog</a></div></li><li class="nav-item dropdown"><a class="nav-link link text-white text-primary dropdown-toggle display-4" href="sobre.html" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside" aria-expanded="false">Sobre</a><div class="dropdown-menu" aria-labelledby="dropdown-757"><a class="text-white text-primary dropdown-item display-4" href="index.html">Início</a><a class="text-white text-primary dropdown-item display-4" href="sobre.html">Nosso projeto</a><a class="text-white text-primary dropdown-item display-4" href="guardians.html">Nosso time</a><a class="text-white text-primary dropdown-item display-4" href="https://bolha.blog/bolhaverso" target="_blank">Nosso blog</a></div></li><li class="nav-item dropdown"><a class="nav-link link text-white text-primary dropdown-toggle show display-4" href="index.html#fediverso" data-toggle="dropdown-submenu" data-bs-toggle="dropdown" data-bs-auto-close="outside" aria-expanded="false">Serviços<br></a><div class="dropdown-menu show" aria-labelledby="dropdown-983" data-bs-popper="none"><a class="text-white text-primary dropdown-item display-4" href="index.html#fediverso">Fediverso</a><a class="text-white text-primary dropdown-item display-4" href="index.html#chat">Chat</a><a class="text-white text-primary dropdown-item display-4" href="index.html#conferencia">Conferência</a><a class="text-white text-primary dropdown-item display-4" href="index.html#util">Utilidades</a></div></li><li class="nav-item"><a class="nav-link link text-white text-primary display-4" href="index.html#contato">Contato</a></li><li class="nav-item"><a class="nav-link link text-white text-primary display-4" href="index.html#custos">Apóie</a></li></ul>
</div>
</div>
</nav>
</section>
<section data-bs-version="5.1" class="header3 cid-tIHC42EXDr mbr-fullscreen" id="header3-3q">
<div class="mbr-overlay" style="opacity: 0; background-color: rgb(255, 255, 255);"></div>
<div class="align-center container-fluid">
<div class="row justify-content-end">
<div class="col-12 col-lg-4">
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="info1 cid-tIHC42T3bZ" id="info1-3r">
<div class="align-center container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<h3 class="mbr-section-title mb-4 mbr-fonts-style display-2"><strong>Welcome to our</strong><div><strong>Tech Community</strong></div></h3>
<p class="mbr-text mb-5 mbr-fonts-style display-7">Uma comunidade de tecnologia feita por pessoas<br>como eu e você, para pessoas como eu e você!<br><br><strong>What topics in tech?</strong><br>Here we love Dev, Sec, Ops, Data<br>Networks, Linux, Unix, Mac<br>Cloud Native, Kubernetes and more :)<br><br><strong>Is it only tech talks? No, never!</strong><br>We like to talk about life, the universe, humans, politics, world challenges, and more :)<br><br><strong>I'm not a tech person, but I want to join, is that ok?</strong><br>Yes sure, it's open to everyone :)<br></p>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features4 cid-tIHC434409" id="features4-3s">
<div class="container">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2">
<strong>Fediverse instances</strong></h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2 display-5">Our services for you</h5>
</div>
<div class="row mt-4">
<div class="item features-image сol-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-man-geek-latino-in-his-42s-studing-a-20585838-0021-4717-91c0-7e94dacbd357-596x374.png" alt="Mobirise Website Builder" title="">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Mastodon</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">bolha.us</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Microblog tool that allows you to create posts with 500 chars. Its like twitter.<br></p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://bolha.us" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
<div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-brown-woman-with-curly-brown-hair-is-l-01df0d7b-737d-4120-a5f1-d327890728be-596x596.png" alt="Mobirise Website Builder" title="">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>PixelFed</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">
bolha.photos</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Photo sharing tool that allow you to share photos and videos about you and your live. It's like instagram.<br></p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://bolha.photos" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
<div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-girl-black-geek-in-his-28s-studying-61c0d659-38cf-4e78-96de-954e2f6f2fbf-596x374.png" alt="Mobirise Website Builder" title="" data-slide-to="2" data-bs-slide-to="2">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Lemmy</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">bolha.social</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Link aggregator and forum to discuss everything you want. It's like reddit.<br></p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://bolha.social" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-black-man-geek-in-his-33s-studing-at-710beadd-a9ba-4d97-b39d-b29b8afd5312-596x374.png" alt="Mobirise Website Builder" title="" data-slide-to="3" data-bs-slide-to="3">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>WriteFreely</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">bolha.blogs</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">It's a blog platform. Works like Wordpress or Medium, but with a focus on the content. It's the same engine used to power Write.as platform.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://bolha.blog" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-black-man-geek-in-his-33s-studing-at-1c0c47fa-2602-4cfa-8617-21f06bcd180f-596x374.png" alt="Mobirise Website Builder" title="" data-slide-to="4" data-bs-slide-to="4">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>BookWyrm</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">bolha.review</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Talk about books, track your reading, and find out what your friends are reading, on your own terms.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://bolha.review" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-four-geek-latino-mans-at-their-40s-wit-01abb20f-5b70-4bfe-845c-309bcbb71a8b-596x374.png" alt="Mobirise Website Builder" title="" data-slide-to="5" data-bs-slide-to="5">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Friendica</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">:)</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">It's a full social network platform like Facebook.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="coming-soon.html" class="btn item-btn btn-warning display-7" target="_blank">Soon</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-side-view-of-a-brown-girl-geek-worki-0a7c3f8a-a2a5-4a75-b8c2-610b5c1b1fa1-596x374.png" alt="Mobirise Website Builder" title="" data-slide-to="6" data-bs-slide-to="6">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>OwnCast</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">:)</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Owncast is a free and open source live video and web chat server for use with existing popular broadcasting software.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="coming-soon.html" class="btn item-btn btn-warning display-7" target="_blank">Soon</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-side-view-of-a-brown-girl-geek-worki-599d7160-1ca2-417f-88c7-4e91480f07d7-596x374.png" alt="Mobirise Website Builder" title="" data-slide-to="8" data-bs-slide-to="9">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>CastPod</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">:)</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Self-host your podcasts with ease, keep control over what you create and talk to your audience without any middleman. </p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="coming-soon.html" class="btn item-btn btn-warning display-7" target="_blank">Soon</a></div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features4 cid-tITEaMO8xZ" id="features4-4m">
<div class="container">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2">
<strong>ELK</strong></h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2 display-5"><div></div></h5>
</div>
<div class="row mt-4">
<div class="item features-image сol-12 col-md-6 col-lg-12 active">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-black-man-geek-in-his-33s-studing-at-067c4b2f-c0e0-4027-9059-3bb188bfa40f-1376x864.png" alt="Mobirise Website Builder" title="" data-slide-to="0" data-bs-slide-to="0">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>ELK</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">This a new client to access our Mastodon or any other Mastodon server.<br><strong>It's an experimental project, </strong>use and give us some feedback<strong>.</strong><br>Project site <a href="https://github.com/elk-zone/elk" class="text-primary" target="_blank">https://github.com/elk-zone/elk</a></h6>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://elk.bolha.us" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features4 cid-tIHC43APUT" id="features4-3t">
<div class="container">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"><strong>Chat & IM</strong><br></h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2 display-5">Visit <strong>bolha.chat</strong> to known more about our services</h5>
</div>
<div class="row mt-4">
<div class="item features-image сol-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/erickgt-drawing-style-a-man-geek-latino-in-his-42s-working-at-a-33676ce8-46da-4d45-9314-f9ceb7352cfd-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="0" data-bs-slide-to="0">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Matrix</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">Decentralized Network</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">An open network for secure, decentralized communication in real-time chat. A new internet open standard.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://bolha.chat" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-an-asian-woman-geek-in-his-35s-studing-eb8726fa-bf97-4286-84a9-c58c73353228-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="1" data-bs-slide-to="1">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Element</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">Matrix Full Client</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">It's our default matrix web client. You can also install in your desktop.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://element.bolha.chat" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-girl-black-geek-in-his-28s-studying-e85423ef-5258-42cf-beb3-b660bb9218f6-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="2" data-bs-slide-to="2">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Hydrogen</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">Matrix IM Client</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">It's a matrix web client that works on old devices, and has an interface with IM look like.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://hydrogen.bolha.chat" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-black-man-geek-in-his-33s-studing-at-1c0c47fa-2602-4cfa-8617-21f06bcd180f-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="3" data-bs-slide-to="3">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Cinny</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">Another Matrix Client</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Cinny is another minimalist web client for Matrix.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://cinny.bolha.chat" class="btn item-btn btn-primary display-7">Go</a></div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features4 cid-tIHC43SP1y" id="features4-3u">
<div class="container">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2">
<strong>Conference</strong></h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2 display-5"><div></div></h5>
</div>
<div class="row mt-4">
<div class="item features-image сol-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-latin-girl-standing-behind-a-monitor-942d2cd6-09d9-4257-a212-0656a00a60ee-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="0" data-bs-slide-to="0">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Jitsi</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">Jitsi open source project which provide state-of-the-art video conferencing capabilities that are secure, easy to use.</h6>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://bolha.video" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-brown-girl-standing-in-front-of-a-vi-53b566e6-d4da-48aa-b317-4fe93e692e52-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="1" data-bs-slide-to="1">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Audon</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">Audon open source project which provides audio conferencing capabilities for the fediverse.</h6>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="coming-soon.html" class="btn item-btn btn-warning display-7">Soon</a></div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="header1 cid-tIHC445Dr9 mbr-fullscreen" id="header1-3v">
<div class="mbr-overlay" style="opacity: 0.1; background-color: rgb(250, 250, 250);"></div>
<div class="container">
<div class="row justify-content-end">
<div class="col-12 col-lg-5">
<h1 class="mbr-section-title mbr-fonts-style mb-3 display-1"><strong>Our blog</strong></h1>
<p class="mbr-text mbr-fonts-style display-7">
Visit our Content Hub to Follow the news about our Network and Community.</p>
<div class="mbr-section-btn mt-3"><a class="btn btn-primary display-4" href="https://bolha.blog/bolhaverso" target="_blank">Go</a></div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features4 cid-tIHC44k31b" id="features4-tqN0N8xQcH-wMNYi0QlCI-3w">
<div class="container">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"><strong>Utilities</strong></h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2 display-5">Our network goes beyond the social tools</h5>
</div>
<div class="row mt-4">
<div class="item features-image сol-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-four-geek-latino-mans-at-his-40s-codin-79e58f5e-f8c2-45ed-a344-aab939e730dc-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="1" data-bs-slide-to="1">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>HedgeDoc</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">notes.bolha.tools</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">This is a Markdown Collaborative Realtime Editor to keep your ideias in check anytime. <br></p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://notes.bolha.tools" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
<div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-four-geek-latino-mans-at-his-40s-codin-9e4669c0-f557-4f4f-b9cd-e3fe512962e3-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="2" data-bs-slide-to="2">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Invidious</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">
tube.bolha.tools</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">This is an alternative frontend for Youtube.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://tube.bolha.tools" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-four-geek-latino-mans-at-his-40s-codin-0afbe386-fc9a-4ca1-8bd1-ed2798f1a134-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="4" data-bs-slide-to="4">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>LibreTranslate</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">
libretranslate.bolha.tools</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Free and Open Source Machine Translation API. It's integrated with our Mastodon and it's free to use.<br></p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://libretranslate.bolha.tools" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-four-geek-latino-mans-at-his-40s-codin-b743a701-04ed-466f-80d1-a120b839344c-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="4" data-bs-slide-to="5">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Lingva</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">
translate.bolha.tools</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">This is an alternative frontend for Google Translate.<br></p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://translate.bolha.tools" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features4 cid-tITECQdT4n" id="features4-tqN0N8xQcH-wMNYi0QlCI-4n">
<div class="container">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"><strong>Guardians Tools</strong></h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2 display-5">Special tools for an Special Team :)</h5>
</div>
<div class="row mt-4">
<div class="item features-image сol-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-latin-geek-girl-in-front-of-an-apple-b8867650-dd1b-4528-a710-3fa4600ca981-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="1" data-bs-slide-to="1">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Dokuwiki</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">dokuwiki.bolha.io</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">This is a tool to organize the documentation of our project.<br>Internal Bolha Team only.<br></p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://dokuwiki.bolha.io" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
<div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-latim-geek-girl-in-front-of-the-an-a-c16c4baf-1e2b-4212-841d-c3dff083db7b-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="2" data-bs-slide-to="2">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Passbolt</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">passbolt.bolha.io</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">The is our password and secret manager.<br>Internal Bolha Team only.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://passbolt.bolha.io" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features4 cid-tIHC44EerD" id="features4-tqN0N8xQcH-wMNYi0QlCI-3x">
<div class="container">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"><strong>ActivityPub Relay</strong></h4>
<h5 class="mbr-section-subtitle mbr-fonts-style align-center mb-0 mt-2 display-5">Replicating Brazilian Content</h5>
</div>
<div class="row mt-4">
<div class="item features-image сol-12 col-md-6 col-lg-6 active">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-anime-an-immense-futuristic-tower-transmission-radio-352c0eba-3bee-476e-aeb3-c7755adb279a-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="0" data-bs-slide-to="0">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Relay</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">relay.instancias-br.online</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">This is a relay to exchange content between mastodon portuguese instances.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://relay.instancias-br.online" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div><div class="item features-image сol-12 col-md-6 col-lg-6">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-a-girl-black-geek-in-his-28s-studying-61c0d659-38cf-4e78-96de-954e2f6f2fbf-1256x789.png" alt="Mobirise Website Builder" title="" data-slide-to="1" data-bs-slide-to="2">
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-5"><strong>Instance List</strong></h5>
<h6 class="item-subtitle mbr-fonts-style mt-1 display-7">lista.instancias-br.online</h6>
<p class="mbr-text mbr-fonts-style mt-3 display-7">This is a curated list created by @[email protected].</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://lista.instancias-br.online" class="btn item-btn btn-primary display-7" target="_blank">Go</a></div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="contacts2 cid-tIHC457mAY" id="contacts2-tqN1fl1IqA-QLd7XOFWud-3z">
<!---->
<div class="container">
<div class="mbr-section-head">
<h3 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"><strong>Feel free to contact us</strong><br></h3>
</div>
<div class="row justify-content-center mt-4">
<div class="card col-12 col-md-6">
<div class="card-wrapper">
<div class="image-wrapper">
<span class="mbr-iconfont socicon-mastodon socicon"></span>
</div>
<div class="text-wrapper">
<h6 class="card-title mbr-fonts-style mb-1 display-5">
<strong>Mastodon</strong></h6>
<p class="mbr-text mbr-fonts-style display-7">
@[email protected]</p>
</div>
</div>
</div>
<div class="card col-12 col-md-6">
<div class="card-wrapper">
<div class="image-wrapper">
<span class="mbr-iconfont mobi-mbri-letter mobi-mbri"></span>
</div>
<div class="text-wrapper">
<h6 class="card-title mbr-fonts-style mb-1 display-5">
<strong>Email</strong>
</h6>
<p class="mbr-text mbr-fonts-style display-7">
</div>
</div>
</div>
<div class="card col-12 col-md-6">
<div class="card-wrapper">
<div class="image-wrapper">
<span class="mbr-iconfont mbri-chat"></span>
</div>
<div class="text-wrapper">
<h6 class="card-title mbr-fonts-style mb-1 display-5">
<strong>Matrix</strong></h6>
<p class="mbr-text mbr-fonts-style display-7"><strong>#Help </strong>channel on matrix<strong> bolha.chat</strong></p>
</div>
</div>
</div>
<div class="card col-12 col-md-6">
<div class="card-wrapper">
<div class="image-wrapper">
<span class="mbr-iconfont mbrib-timer"></span>
</div>
<div class="text-wrapper">
<h6 class="card-title mbr-fonts-style mb-1 display-5"><strong>Admins Timezone</strong></h6>
<p class="mbr-text mbr-fonts-style display-7">
UTC -3</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features10 cid-tIHC45olbo" id="features11-40">
<!---->
<div class="container">
<div class="title">
<h3 class="mbr-section-title mbr-fonts-style mb-4 display-2">
<strong>Do you want to help us keep things running?<br></strong></h3>
<h4 class="mbr-section-subtitle mbr-fonts-style mb-3 display-5">These are our monthly costs</h4>
</div>
<div class="card">
<div class="card-wrapper">
<div class="row align-items-center">
<div class="col-12 col-md-4">
<div class="image-wrapper">
<img src="assets/images/falagutera-drawing-style-a-man-geek-latino-in-his-42s-studing-a-20585838-0021-4717-91c0-7e94dacbd357-816x512.png" alt="Mobirise Website Builder" title="">
</div>
</div>
<div class="col-12 col-md">
<div class="card-box">
<div class="row">
<div class="col-12">
<div class="top-line">
<h4 class="card-title mbr-fonts-style display-5"><strong>OVH ECO Dedicated Servers</strong></h4>
<p class="cost mbr-fonts-style display-5">US $140</p>
</div>
</div>
<div class="col-12">
<div class="bottom-line">
<p class="mbr-text mbr-fonts-style m-0 display-7">Web have two <strong>baremetal</strong> dedicated servers running on the <strong>OVH Canada </strong>Provider. Both are running ProxMox 7.4 in cluster mode with several active KVM instances.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-wrapper">
<div class="row align-items-center">
<div class="col-12 col-md-4">
<div class="image-wrapper">
<img src="assets/images/falagutera-drawing-style-a-girl-geek-latina-in-his-28s-studing-74818919-bcb9-419a-ad05-f0b1a6053f5b-816x512.png" alt="Mobirise Website Builder" title="">
</div>
</div>
<div class="col-12 col-md">
<div class="card-box">
<div class="row">
<div class="col-12">
<div class="top-line">
<h4 class="card-title mbr-fonts-style display-5"><strong>OVH VPS</strong></h4>
<p class="cost mbr-fonts-style display-5">US $35</p>
</div>
</div>
<div class="col-12">
<div class="bottom-line">
<p class="mbr-text mbr-fonts-style m-0 display-7">Our Reverse Proxy/Load Balancer and Jitsi instance are running outside the ProxMox servers.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-wrapper">
<div class="row align-items-center">
<div class="col-12 col-md-4">
<div class="image-wrapper">
<img src="assets/images/falagutera-drawing-style-a-man-geek-latino-in-his-42s-studing-a-33d6c261-6cc1-47e9-acde-3152738db218-816x512.png" alt="Mobirise Website Builder" title="">
</div>
</div>
<div class="col-12 col-md">
<div class="card-box">
<div class="row">
<div class="col-12">
<div class="top-line">
<h4 class="card-title mbr-fonts-style display-5"><strong>VULTR VPS</strong></h4>
<p class="cost mbr-fonts-style display-5">US $35</p>
</div>
</div>
<div class="col-12">
<div class="bottom-line">
<p class="mbr-text mbr-fonts-style m-0 display-7">Our StatusPage (Kuma), Secondary Reverse Proxy/Load Balancer, Mail Smart GW and Mail Proxy are outside the ProxMox servers.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-wrapper">
<div class="row align-items-center">
<div class="col-12 col-md-4">
<div class="image-wrapper">
<img src="assets/images/falagutera-drawing-style-a-girl-black-geek-in-his-28s-studying-e85423ef-5258-42cf-beb3-b660bb9218f6-816x512.png" alt="Mobirise Website Builder" title="">
</div>
</div>
<div class="col-12 col-md">
<div class="card-box">
<div class="row">
<div class="col-12">
<div class="top-line">
<h4 class="card-title mbr-fonts-style display-5"><strong>Media Object Storage & CDN</strong></h4>
<p class="cost mbr-fonts-style display-5">US $15</p>
</div>
</div>
<div class="col-12">
<div class="bottom-line">
<p class="mbr-text mbr-fonts-style m-0 display-7">We're using Wasabi services to store our medias.<br></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-wrapper">
<div class="row align-items-center">
<div class="col-12 col-md-4">
<div class="image-wrapper">
<img src="assets/images/falagutera-drawing-style-a-black-man-geek-in-his-33s-studing-at-710beadd-a9ba-4d97-b39d-b29b8afd5312-816x512.png" alt="Mobirise Website Builder" title="">
</div>
</div>
<div class="col-12 col-md">
<div class="card-box">
<div class="row">
<div class="col-12">
<div class="top-line">
<h4 class="card-title mbr-fonts-style display-5"><strong>Backup Object Storage</strong></h4>
<p class="cost mbr-fonts-style display-5">US $10</p>
</div>
</div>
<div class="col-12">
<div class="bottom-line">
<p class="mbr-text mbr-fonts-style m-0 display-7">We're using BlackBlaze services to store our backup</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-wrapper">
<div class="row align-items-center">
<div class="col-12 col-md-4">
<div class="image-wrapper">
<img src="assets/images/falagutera-drawing-style-a-girl-black-geek-in-his-28s-studying-61c0d659-38cf-4e78-96de-954e2f6f2fbf-816x512.png" alt="Mobirise Website Builder" title="">
</div>
</div>
<div class="col-12 col-md">
<div class="card-box">
<div class="row">
<div class="col-12">
<div class="top-line">
<h4 class="card-title mbr-fonts-style display-5"><strong>Operations</strong></h4>
<p class="cost mbr-fonts-style display-5"> ∞</p>
</div>
</div>
<div class="col-12">
<div class="bottom-line">
<p class="mbr-text mbr-fonts-style m-0 display-7">Our volunteer team is doing the job, helping to maintain and operate our network. We invest something between 120 and 160 per month to keep everything running smoothly for you.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="features10 cid-tMLw3VXSO2" id="features11-5g">
<!---->
<div class="container">
<div class="title">
<h4 class="mbr-section-subtitle mbr-fonts-style mb-3 display-5">This is our annual costs with DNS</h4>
</div>
<div class="card">
<div class="card-wrapper">
<div class="row align-items-center">
<div class="col-12 col-md-4">
<div class="image-wrapper">
<img src="assets/images/falagutera-drawing-style-a-man-geek-latino-in-his-42s-studing-a-20585838-0021-4717-91c0-7e94dacbd357-816x512.png" alt="Mobirise Website Builder" title="">
</div>
</div>
<div class="col-12 col-md">
<div class="card-box">
<div class="row">
<div class="col-12">
<div class="top-line">
<h4 class="card-title mbr-fonts-style display-5"><strong>Namecheap Annual </strong></h4>
<p class="cost mbr-fonts-style display-5">US $130</p>
</div>
</div>
<div class="col-12">
<div class="bottom-line">
<p class="mbr-text mbr-fonts-style m-0 display-7">All our domains are registered with Namecheap, this is our Registrar Provider, it's an annual cost by the way.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-bs-version="5.1" class="slider4 mbr-embla cid-tIHGBls3ed" id="slider4-45">
<div class="position-relative text-center">
<div class="mbr-section-head">
<h4 class="mbr-section-title mbr-fonts-style align-center mb-0 display-2"><strong>Support Us</strong></h4>
</div>
<div class="embla mt-4" data-skip-snaps="true" data-align="center" data-contain-scroll="trimSnaps" data-auto-play-interval="5" data-draggable="true">
<div class="embla__viewport container">
<div class="embla__container">
<div class="embla__slide slider-image item" style="margin-left: 1rem; margin-right: 1rem;">
<div class="slide-content">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-drawing-style-group-of-diverse-young-people-hanging-1a2ab1e9-e599-4040-ba4e-7fad1700fab0-1376x864.png" alt="Mobirise Website Builder">
</div>
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-7"><strong>Patreon</strong></h5>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Support us via Patreon.com</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://www.patreon.com/bolha" class="btn btn-primary item-btn display-7" target="_blank">Go</a></div>
</div>
</div>
<div class="embla__slide slider-image item" style="margin-left: 1rem; margin-right: 1rem;">
<div class="slide-content">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/bolha-collective-2-1256x789.png" alt="Mobirise Website Builder">
</div>
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-7"><strong>Apoia-se</strong></h5>
<p class="mbr-text mbr-fonts-style mt-3 display-7">Support us via Apoia-se.</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="https://apoia.se/bolha" class="btn btn-primary item-btn display-7" target="_blank">Go</a></div>
</div>
</div>
<div class="embla__slide slider-image item" style="margin-left: 1rem; margin-right: 1rem;">
<div class="slide-content">
<div class="item-wrapper">
<div class="item-img">
<img src="assets/images/falagutera-a-group-of-diverse-young-people-hanging-out-together-9209aab0-3058-4de2-87a5-112f2169a6df-1376x864.png" alt="Mobirise Website Builder">
</div>
</div>
<div class="item-content">
<h5 class="item-title mbr-fonts-style display-7"><strong>Pix</strong></h5>
<p class="mbr-text mbr-fonts-style mt-3 display-7">If you live in Brazil you can Pix us!</p>
</div>
<div class="mbr-section-btn item-footer mt-2"><a href="" class="btn btn-primary item-btn display-7" target="_blank">[email protected]</a></div>
</div>
</div>
</div>
</div>
<button class="embla__button embla__button--prev">
<span class="mobi-mbri mobi-mbri-arrow-prev mbr-iconfont" aria-hidden="true"></span>
<span class="sr-only visually-hidden visually-hidden">Previous</span>
</button>
<button class="embla__button embla__button--next">
<span class="mobi-mbri mobi-mbri-arrow-next mbr-iconfont" aria-hidden="true"></span>
<span class="sr-only visually-hidden visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<section data-bs-version="5.1" class="footer1 cid-tIHC45Rcc4" once="footers" id="footer1-41">
<div class="container">
<div class="row mbr-white">
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-7"><strong>Bolhaverse</strong><br><a href="about.html" class="text-primary">About us</a><br><strong><a href="guardians.html" class="text-primary">Guardians</a><br></strong><a href="https://bolha.blog/bolhaverso" class="text-primary" target="_blank">Our Blog</a><br><a href="index.html#apoio" class="text-primary">Support us</a><br><br><strong>Chat</strong><br><a href="https://bolha.chat" class="text-primary" target="_blank">Matrix</a><div><a href="https://element.bolha.chat" class="text-primary" target="_blank">Element</a></div><div><a href="https://hydrogen.bolha.chat" class="text-primary" target="_blank">Hydrogen</a></div><div><a href="https://cinny.bolha.chat" class="text-primary" target="_blank">Cinny</a><br><a href="https://fluffy.bolha.chat" class="text-primary" target="_blank">Fluffy</a><br><br><strong>Conference</strong><br><a href="https://bolha.video" class="text-primary" target="_blank" style="font-weight: bold;">Jitsi</a><br>Audon</div><div><br><strong>Streaming</strong><br>Owncast<br><br><strong>PodCast</strong><br>CastPod<br><br><strong>Video</strong><br>Peertube</div></h5>
<ul class="list mbr-fonts-style display-4"></ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-7"><strong>Bolhaverso<br><a href="sobre.html" class="text-primary">Sobre nós</a><br><a href="guardians.html" class="text-primary">Nosso time</a><br><a href="https://bolha.blog/bolhaverso" class="text-primary" target="_blank">Nosso blog</a><br><a href="index.html#apoie" class="text-primary">Apóie a bolha</a></strong><strong><br><br>Other Sites<br><a href="https://gcn.sh" class="text-primary" target="_blank">GCN</a><br><a href="https://blog.gcn.sh" class="text-primary" target="_blank">GCN Blog</a><br><a href="https://bolha.chat" class="text-primary" target="_blank">Bolha.chat</a><br><a href="http://bolha.tools" class="text-primary" target="_blank">Bolha.tools</a><br><a href="https://bolha.video" class="text-primary" target="_blank">Bolha.video</a><br><br>Mastodon<br><a href="https://bolha.us" class="text-primary" target="_blank">Mastodon</a><br><a href="https://poet.bolha.us" class="text-primary">MastoPoet</a><br><a href="https://elk.bolha.us" class="text-primary" target="_blank">Elk</a><br><a href="https://relay.bolha.us" class="text-primary" target="_blank">Relay</a><br><br>Fediverse<br><a href="https://bolha.photos" class="text-primary" target="_blank">Pixelfed</a><br><a href="https://bolha.forum" class="text-primary" target="_blank">Lemmy</a><br><a href="https://bolha.blog" class="text-primary" target="_blank">WriteFreely</a><br><a href="https://bolha.review" class="text-primary" target="_blank">Bookwyrm</a></strong><br>Friendica<a href="https://bolha.review" class="text-primary" target="_blank" style="font-weight: bold;"><br></a><br><br><br><br></h5>
<ul class="list mbr-fonts-style display-4">
<li class="mbr-text item-wrap"><br></li><li class="mbr-text item-wrap"><span style="font-size: 1.1rem;"><br></span></li><li class="mbr-text item-wrap"><span style="font-size: 1.1rem;"><br></span></li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-7">
<strong>Utilities</strong><br><strong><a href="https://notes.bolha.tools" class="text-primary" target="_blank">HedgeDoc</a><br><a href="https://tube.bolha.tools" class="text-primary" target="_blank">Invidious</a><br><a href="https://libretranslate.bolha.tools" class="text-primary" target="_blank">LibreTranslate</a><br><a href="https://translate.bolha.tools" class="text-primary" target="_blank">Lingva</a><br><br>Guardian Tools<br><a href="https://dokuwiki.bolha.io" class="text-primary" target="_blank">Dokuwiki</a></strong><br><a href="https://passbolt.bolha.io" class="text-primary" target="_blank" style="font-weight: bold;">Passbolt</a><br><a href="https://minio.bolha.io" class="text-primary" target="_blank" style="font-weight: bold;">Minio</a><br>GitLab<br>NextCloud<br>OneOffice<br><br><strong>DNS Services</strong><br><a href="https://dns.bolha.io" class="text-primary" target="_blank" style="font-weight: bold;">Technitium DNS1</a><br><a href="https://dns2.bolha.io" class="text-primary" target="_blank" style="font-weight: bold;">Technitium DNS2</a><br><br><strong>Matrix Tools</strong><br><a href="https://janitor.bolha.chat" class="text-primary" target="_blank" style="font-weight: bold;">Janitor</a><br><a href="https://admin.bolha.io" class="text-primary" target="_blank" style="font-weight: bold;">Admin</a><br><br><strong>Status do<br><a href="https://status.bolha.us" class="text-primary">Bolhaverso</a></strong></h5>
<ul class="list mbr-fonts-style display-4"></ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<h5 class="mbr-section-subtitle mbr-fonts-style mb-2 display-7"><strong>Sobre nossa comuna</strong><br><br>Somos uma comunidade de tecnologia, feita por pessoas como eu e você, para pessoas como eu e você!<br><div><br><strong>About us<br></strong><br>We're an IT community built by people like you and me, for people like you and me!<br></div><br><div>Premium Sponsor<br><a href="https://nativetrail.io" class="text-primary" target="_blank">Nativetrail.io</a><br><br>Host Sponsor<br><a href="https://gcn.sh" class="text-primary" target="_blank">GCN.sh</a><br><br></div></h5>
<p class="mbr-text mbr-fonts-style mb-4 display-4"><a href="index.html#apoie" class="text-primary"><br></a><br><br></p>
</div>
<div class="col-12 mt-4">
<p class="mbr-text mb-0 mbr-fonts-style copyright align-center display-7">Creative Commons - [ 2022 > 2023 ] - Attribution-ShareAlike 4.0 International<br>Photos/Images from Midjourney, Unsplash, Pixabay and ShutterStock.<br></p>
</div>
</div>
</div>
</section><section><a href="https://mobiri.se"></a><a href="https://mobiri.se"></a></section><script src="assets/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="assets/smoothscroll/smooth-scroll.js"></script> <script src="assets/ytplayer/index.js"></script> <script src="assets/dropdown/js/navbar-dropdown.js"></script> <script src="assets/embla/embla.min.js"></script> <script src="assets/embla/script.js"></script> <script src="assets/theme/js/script.js"></script>
<div id="scrollToTop" class="scrollToTop mbr-arrow-up"><a style="text-align: center;"><i class="mbr-arrow-up-icon mbr-arrow-up-icon-cm cm-icon cm-icon-smallarrow-up"></i></a></div>
</body>
</html>