forked from bit-country/bit.country-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
593 lines (575 loc) · 27.8 KB
/
index.html
File metadata and controls
593 lines (575 loc) · 27.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no" />
<meta name="theme-color" content="#FFF" />
<meta name="msapplication-TileColor" content="#FFF" />
<meta name="msapplication-TileImage" content="ms-icon-144x144.png" />
<meta name="msapplication-square70x70logo" content="ms-icon-70x70.png" />
<meta name="msapplication-square150x150logo" content="ms-icon-150x150.png" />
<meta name="msapplication-wide310x150logo" content="ms-icon-310x150.png" />
<meta name="msapplication-square310x310logo" content="ms-icon-310x310.png" />
<link rel="manifest" href="manifest.json" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="120x120" href="apple-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="152x152" href="apple-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png" />
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="android-icon-36x36.png" sizes="36x36" />
<link rel="icon" type="image/png" href="android-icon-48x48.png" sizes="48x48" />
<link rel="icon" type="image/png" href="android-icon-72x72.png" sizes="72x72" />
<link rel="icon" type="image/png" href="android-icon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="android-icon-144x144.png" sizes="144x144" />
<link rel="icon" type="image/png" href="android-icon-192x192.png" sizes="192x192" />
<link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link href="apple-startup-320x460.png"
media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)"
rel="apple-touch-startup-image" />
<link href="apple-startup-640x920.png"
media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image" />
<link href="apple-startup-640x1096.png"
media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image" />
<link href="apple-startup-748x1024.png"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 1) and (orientation: landscape)"
rel="apple-touch-startup-image" />
<link href="apple-startup-750x1024.png" media="" rel="apple-touch-startup-image" />
<link href="apple-startup-750x1294.png"
media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image" />
<link href="apple-startup-768x1004.png"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 1) and (orientation: portrait)"
rel="apple-touch-startup-image" />
<link href="apple-startup-1182x2208.png"
media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)"
rel="apple-touch-startup-image" />
<link href="apple-startup-1242x2148.png"
media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
rel="apple-touch-startup-image" />
<link href="apple-startup-1496x2048.png"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)"
rel="apple-touch-startup-image" />
<link href="apple-startup-1536x2008.png"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
rel="apple-touch-startup-image" />
<title>Bit Country - Start your own metaverse for your community.</title>
<meta property="og:title"
content="Bit.Country - Start your own metaverse for your community. An Ethereum-compatible Network for Metaverses & Games." />
<meta property="og:type" content="website" />
<meta property="og:author" content="Bit Country Network" />
<meta property="og:section" content="" />
<meta property="og:url" content="https://bit.country/" />
<meta property="og:image" content="https://bit.country/media/bc-social.png" />
<meta property="og:image:alt" content="Bit.Country" />
<meta property="og:description"
content="Start your own metaverse for your community. An Ethereum-compatible Network for Metaverses & Games." />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="@bitdotcountry" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-49342214-12"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-49342214-12');
</script>
<link rel="icon" href="./favicon.ico" />
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- <link href="./home.css" rel="stylesheet" /> -->
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<link href="./home.css?v=1.2.6" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.2/flickity.min.css" media="screen" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" />
<script src="https://use.fontawesome.com/036f3c2e51.js"></script>
<style>
#bc-body button {
margin: 5px;
}
</style>
</head>
<body id="bc-body">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand mb-0 h1" href="/">
<img src="./Images/bc-logo.png" alt="Bit Country Logo" id="bc-home-logo" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" target="_blank" href="https://linktr.ee/bitcountry">Linktree</a>
<a class="nav-link" target="_blank" href="https://github.com/bit-country">GitHub</a>
<a class="nav-link" target="_blank" href="https://metaversenw.gitbook.io/bit-country/">White Paper</a>
<a class="nav-link" target="_blank" href="https://medium.com/bit-country">Press</a>
<a target="_blank" class="nav-link position-relative" href="https://support.metaverse.network/ ">Help
Center</a>
<a target="_blank" class="nav-link position-relative"
href="https://forms.zohopublic.com/industryconnect/form/BCMNEcosystemPartner/formperma/0tovB7pdQ3lh1b808uro4OAG04ZdCRO70ld8HItv0Ek">Partnership</a>
</div>
</div>
</div>
</nav>
<div id="bc-home-content-1">
<div style="position: relative; width: 100%; overflow: hidden">
<div style="height: 115vh">
<video id="bg-video" loop="true" autoplay="autoplay" muted>
<source src="https://bit.country/media/home_bg.26d3206a.mp4" />
</video>
</div>
<div id="bg-video-text">
<!-- <img class="img-fluid" src="./Images/bc-font-logo.png" /> -->
<h1 class="home-text-color" style="font-size: 1.5em;color:#fff">
Ignite Vibrant User-Owned Communities
</h1>
<img class="img-fluid" src="./Images/bc-font-logo.png" style="width: 800px;" />
<p style="margin: 30px;">
<h4 class="home-text-color">
<div>
<p style="max-width: 600px;">
Bit.Country to Metaverse Is Like Shopify to eCommerce
<br /><br /><span style="color:white; font-size: 0.7em;">Bit.Country is a Platform for User-Created Metaverses. Users can launch their own metaverse in 12 seconds, streamlining the creation process with a vast library of existing content. <br /><br />In each metaverse, it comes with an NFT Marketplace, Campaign Module, Map Engine, Avatar Engine, Land Economy, NFT Facilities, Customizable 2.5/3D World Engine, Game Engine and Governance. </span>
</p>
</div>
</h4>
</p>
<div style="margin-top: 30px;">
<button class="btn home-btn video-btn" onclick="location.href='https://pioneer.bit.country'">
Pioneer App (Alpha)
</button>
<button class="btn home-btn video-btn"
onclick="window.open('https://metaversenw.gitbook.io/user-manual/'); return false;"
style="background-color: #fff;">
User Manual
</button>
</div>
<div class="home-social-media">
<h5 class="home-text-color-white">Follow us</h5>
<div class="icon-container">
<a target="_blank" href="https://twitter.com/bitdotcountry">
<i class="fa fa-twitter home-social-icon"></i>
</a>
<a target="_blank" href="https://discord.com/invite/PaMAXZZ59N">
<i class="fab fa-discord home-social-icon"></i>
</a>
<a target="_blank" href="https://t.me/BitCountryOfficialTG">
<i class="fa fa-telegram home-social-icon"></i>
</a>
<a target="_blank" href="https://www.youtube.com/c/BitCountryMetaverseNetwork">
<i class="fa fa-youtube home-social-icon"></i>
</a>
<a target="_blank" href="https://medium.com/bit-country">
<i class="fa fa-medium home-social-icon"></i>
</a>
<a target="_blank" href="https://www.facebook.com/bitcountry/">
<i class="fa fa-facebook-f home-social-icon"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="bc-home-bg-parent">
<div id="bc-home-bg"></div>
<div class="row">
<h1 class="home-text-color-white home-header">
The Platform of User-created Metaverses
</h1>
</div>
<div class="row bc-container container"
style="background-image: url(./Images/Continuum3-min.png); background-repeat: no-repeat; background-size: 100%;background-position: left;">
<div class="col-md-5 col-sm-12 home-content-2-text">
<div style="padding: 40px;">
<h2 class="home-text-color-white">Enchanting Community Experiences</h2>
<p class="home-text-color-white">
Bit.Country Infuses Communities with Intriguing Vibes
</p>
<div class="col home-content-2-img">
<img src="./Images/social.jpg" alt="bc-logo" style="min-width: 300px;" />
</div>
<p class="home-text-color-white">
Bit.Country is the premier platform for creating immersive and engaging communities using metaverse. Our user-friendly tools and vast library of assets empower users to bring their unique visions to life and connect with others in new and exciting ways. Join us today and start building your own world.
</p>
</div>
</div>
<div class="col-md-7 col-sm-0 home-content-2-img">
</div>
</div>
<div class="row">
<h1 class="home-text-color-white home-header">
Overview of Bit.Country
</h1>
</div>
<div class="row bc-container container">
<div class="col-md-12 col-sm-12 home-content-2-text">
<div style="padding: 40px;">
<h2 class="home-text-color-white">Your Community</h2>
<p class="home-text-color-white">
Bit.Country enables users to create their own customized metaverse in mere seconds, streamlining the creation process with a vast library of existing content. Our platform is compatible with both EVM and Substrate networks, and will be initially deployed on NEER and NUUM networks, providing unparalleled flexibility and scalability to our users. Our goal is to empower communities and businesses to create immersive and engaging metaverse with minimal time and effort, and to bring the power of metaverse technology to the forefront of the web3 revolution.
</p>
<img src="./Images/web3protocols.png" alt="bc-country metaverse platform" style="width: 100%;" />
</div>
</div>
</div>
<div class="row bc-container container">
<div class=" home-content-2-img col-sm-12 col-md-6">
<img src="./Images/country.png" alt="bc-country" />
</div>
<div class="home-content-2-text col-sm-12 col-md-6">
<div style="padding: 40px">
<h2 class="home-text-color-white">Community With a Great Vibe</h2>
<p class="home-text-color-white">
Taking your social media group into a captivating metaverse where communication takes on a new dimension and the vibe is simply electrifying!
</p>
<p class="home-text-color-white">
Immerse your members in a whole new dimension of engagement that will leave them spellbound. Expand your metaverse in a myriad of ways using the rules and policies that you set, drawing in a wider audience and propelling your community towards exponential growth in the realm of Web3.
</p>
</div>
</div>
</div>
<div class="row bc-container container bc-container-reverse">
<div class="col-sm-12 col-md-6 home-content-2-img col-sm-6">
<img src="./Images/cube.png" alt="bc-logo" />
</div>
<div class="col-sm-12 col-md-6 home-content-2-text col-sm-6">
<div style="padding: 40px">
<h2 class="home-text-color-white">Marketplace</h2>
<p class="home-text-color-white">
Owning your own NFT marketplace provides control over your unique digital assets, access to a global audience, and potential revenue opportunities through commissions and royalties. It also helps build a loyal community and establishes your brand as a leader in the world of Web3 digital art.
</p>
</div>
</div>
</div>
<!-- Economy -->
<div class="row bc-container container">
<div class="col-sm-12 col-md-6 home-content-2-img">
<img src="./Images/finance.png" alt="finance" />
</div>
<div class="col-sm-12 col-md-6 home-content-2-text">
<div style="padding: 40px">
<h2 class="home-text-color-white">Campaigns</h2>
<p class="home-text-color-white">
The campaign module is a powerful marketing tool that can help community owners to increase their brand awareness and attract new customers.
It allows users to distribute rewards to a targeted audience, creating a buzz and generating interest around the products or services.
</p>
</div>
</div>
</div>
<!-- Economy -->
<!-- Residents -->
<div class="row bc-container container bc-container-reverse">
<div class="col-sm-12 col-md-6 home-content-2-img">
<img src="./Images/Resident.png" alt="./bc-logo" />
</div>
<div class="col-sm-12 col-md-6 home-content-2-text">
<div style="padding: 40px">
<h2 class="home-text-color-white">DApps & Games</h2>
<p class="home-text-color-white">
Bit.Country boasts seamless compatibility with virtual machines such as EVMs, enabling developers to effortlessly deploy their existing Dapps or create new ones for the metaverses.
</p>
</div>
</div>
</div>
</div>
<!-- Video -->
<div class="row video-container" id="demo-video">
<div class="video-container-img"></div>
<div class="video-list main-gallery">
<div class="gallery-cell gallery-cell-1">
<h1 class="home-text-color-white">The New Era Trailer</h1>
<iframe title="The New Era" src="https://player.vimeo.com/video/743306267"></iframe>
</div>
<div class="gallery-cell gallery-cell-2">
<h1 class="home-text-color-white">Metaverses of Web3 Companies</h1>
<iframe title="Metaverses of Web3 Companies" src="https://player.vimeo.com/video/767054380"></iframe>
</div>
<div class="gallery-cell gallery-cell-3">
<h1 class="home-text-color-white">Kaosland</h1>
<iframe title="Kaosland" src="https://player.vimeo.com/video/767056515"></iframe>
</div>
<div class="gallery-cell gallery-cell-5">
<h1 class="home-text-color-white">Avatar Emotes</h1>
<iframe title="The NUUM Story" src="https://player.vimeo.com/video/767058514"></iframe>
</div>
<div class="gallery-cell gallery-cell-6">
<h1 class="home-text-color-white">Avatar Wearables</h1>
<iframe title="Bit.Country - Ethereum Bridge" src="https://player.vimeo.com/video/767058242"></iframe>
</div>
<div class="gallery-cell gallery-cell-4">
<h1 class="home-text-color-white">DOT in Vietnam Event</h1>
<iframe title="DOT in Vietnam Event" src="https://player.vimeo.com/video/766749233"></iframe>
</div>
</div>
</div>
<!-- Video -->
<!-- Era -->
<div class="row roadmap-container">
<div class="roadmap-bg"></div>
<h1 class="home-text-color-white home-text-center">The Era of Platform </h1>
<div class="row container">
<div class="row">
<div class="col"></div>
<div class="col-1 roadmap-gp">
<div class="roadmap-dot current"></div>
<div class="roadmap-line"></div>
</div>
<div class="col">
<div class="home-text-color-white">
<h4>UI Framework</h4>
<p>
Launch blockchain testnet and UI Framework for public access with selected user groups.
<br />Develop primitive game modes.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="home-text-color-white" style="text-align: end">
<h4>Fine Tuning</h4>
<p>
Refine the model's features based on valuable user feedback and optimize it for optimal market fit.
</p>
</div>
</div>
<div class="col-1 roadmap-gp">
<div class="roadmap-dot"></div>
<div class="roadmap-line"></div>
</div>
<div class="col"></div>
</div>
<div class="row">
<div class="col"></div>
<div class="col-1 roadmap-gp">
<div class="roadmap-dot"></div>
<div class="roadmap-line"></div>
</div>
<div class="col">
<div class="home-text-color-white">
<h4>Early Metaverses</h4>
<p>Develop the very first community-owned metaverse Kaosland, grow the community. <br />Onboard
reputable early adopters around Genesis.</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="home-text-color-white" style="text-align: end">
<h4>Supporting More Protocols</h4>
<p>
Supporting More Network Protocols for scalability.
</p>
</div>
</div>
<div class="col-1 roadmap-gp">
<div class="roadmap-dot"></div>
<div class="roadmap-line"></div>
</div>
<div class="col"></div>
</div>
<div class="row">
<div class="col"></div>
<div class="col-1 roadmap-gp">
<div class="roadmap-dot"></div>
</div>
<div class="col">
<div class="home-text-color-white">
<h4>Dapp Game Ecosystem</h4>
<p>Continuously invest into the developer community for the game-centric dapps ecosystem on the network.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Roadmap -->
<!-- Welcome Video -->
<div class="buy-now center hero">
<video loop="true" autoplay="autoplay" muted class="hero-background">
<source src="./Images/kiosk.mp4" />
</video>
<video loop="true" autoplay="autoplay" muted class="hero-background2">
<source src="./Images/com.mp4" />
</video>
<button class="btn home-btn video-btn" onclick="window.open('https://pioneer.bit.country/create-metaverse')" style="margin:auto">
Create Your Metaverse
</button>
</div>
<!-- Welcome Video -->
<!-- Our team -->
<div class="row bc-container container">
<h1 class="home-text-color-white home-text-center">Our Core Team</h1>
<img style="width: 70%; margin: auto" src="./Images/team2022.png" />
</div>
<div class="row bc-container container">
<h1 class="home-text-color-white home-text-center">Background</h1>
<div class="row">
<div class="col-md-2 col-sm-1"></div>
<div class="col-md-8 col-sm-10">
<p>
<ul style="color: #fff ;">
<li>
Successfully launched whitelisted Metaverse Odyssey Event. <a target="_blank" style="color: white;"
href="https://medium.com/bit-country/announcement-metaverse-odyssey-event-update-9171ab4ce467">More
info</a>
</li>
<li>
Backed by Animoca Brands, DFG, Hypersphere Ventures and Walsh Wealth Ventures. <a target="_blank"
href="https://bitcountry.medium.com/bit-country-raises-4m-seed-funding-to-start-individualized-metaverses-5dd965cc5c36">More
info</a>
</li>
<li>
Alumni of Berkeley Blockchain Xcelerator (2021 Cohort) at UC Berkeley
</li>
<li>
Participant of Creative Destruction Lab (Bootcamp) of University of Toronto
</li>
<li>
Web3 Foundation Open Grant Recipients
</li>
</ul>
</p>
</div>
<div class="col-md-2 col-sm-1"></div>
</div>
</div>
<footer id="home-footer">
<div class="home-footer-logos">
<div>
<h1 class="home-text-color-white">Supported By</h1>
</div>
<div class="row">
<div class="col-xl-3 col-lg-2 col-md-0"></div>
<div class="col-xl-3 col-lg-4 col-md-12 align-items-center">
<a target="_blank" href="https://web3.foundation/"><img src="./Images/web3foundation.png" alt="web3-logo"
style="max-width: 300px; " /></a>
</div>
<div class="col-xl-3 col-lg-4 col-md-12 align-items-center">
<a target="_blank" href="https://www.xcelerator.berkeley.edu/"><img src="./Images/bbx.png" alt="bbx-logo"
style="max-width: 300px;" /></a>
</div>
<div class="col-xl-3 col-lg-2 col-md-0"></div>
</div>
</div>
<hr />
<div>
<div>
<h1 class="home-text-color-white">Our Backers</h1>
</div>
<img src="./Images/investors.jpg" alt="investors-logo" class="investors-img" />
</div>
<hr />
<div>
<div>
<h1 class="home-text-color-white">Media</h1>
</div>
<div class="row">
<div class="col-xl-3 col-lg-2 col-md-0"></div>
<div class="col-xl-3 col-lg-4 col-md-12 align-items-center">
<a target="_blank" href="https://venturebeat.com/datadecisionmakers/metaverse-as-a-service-its-only-a-matter-of-time-before-its-next-to-eat-the-world/"><img src="./Images/vbb.png"
alt="metaverse as a service" style="max-width: 300px; " /></a>
</div>
<div class="col-xl-3 col-lg-4 col-md-12 align-items-center">
<a target="_blank"
href="https://www.forbes.com/sites/cathyhackl/2021/06/01/metaverse-weekly-virtual-gucci-pursues-digital-people-direct-to-avatar-ecosytem-nerf-nfts-and-beyond/?sh=74d1461372c9"><img
src="./Images/forbes.png" alt="Forbes" style="max-width: 300px;" /></a>
</div>
<div class="col-xl-3 col-lg-2 col-md-0"></div>
</div>
<div class="row">
<div class="col-xl-3 col-lg-2 col-md-0"></div>
<div class="col-xl-3 col-lg-4 col-md-12">
<a target="_blank"
href="https://cointelegraph.com/press-releases/bitcountry-metaverses-aim-to-bring-thousands-of-virtual-jobs"><img
src="./Images/cointelegraph.png" alt="cointelegraph" style="max-width: 300px;" /></a>
</div>
<div class="col-xl-3 col-lg-4 col-md-12">
<a target="_blank"
href="https://finance.yahoo.com/news/bit-country-raises-4m-seed-132500914.html?fr=sycsrp_catchall"><img
src="./Images/yahoo.png" alt="yahoo logo" style="max-width: 300px;" /></a>
</div>
<div class="col-xl-3 col-lg-2 col-md-0"></div>
</div>
<div class="row">
<div class="col-xl-3 col-lg-2 col-md-0"></div>
<div class="col-xl-3 col-lg-4 col-md-12">
<a target="_blank"
href="https://www.newsbtc.com/news/company/bit-country-raises-4-million-in-seed-investments-to-let-users-build-their-own-metaverses/"><img
src="./Images/newsbtc.png" alt="yahoo logo" style="max-width: 300px;" /></a>
</div>
<div class="col-xl-3 col-lg-4 col-md-12">
<a target="_blank" href="https://hackernoon.com/why-metaverses-are-the-next-big-trend-after-nfts-p8v37md"><img
src="./Images/hn.png" alt="MVP STUDIO" id="" style="max-width: 300px;max-height: 110px;;" /></a>
</div>
<div class="col-xl-3 col-lg-2 col-md-0"></div>
</div>
</div>
<hr />
<div class="home-social-media">
<span class="home-text-color-white">All rights reserved <i class="fa fa-copyright"></i>
<script>
document.write(new Date().getFullYear());
</script>
bit.country
</span>
<div class="icon-container">
<a target="_blank" href="https://twitter.com/bitdotcountry">
<i class="fa fa-twitter home-social-icon"></i>
</a>
<a target="_blank" href="https://discord.com/invite/PaMAXZZ59N">
<i class="fab fa-discord home-social-icon"></i>
</a>
<a target="_blank" href="https://t.me/BitCountryOfficialTG">
<i class="fa fa-telegram home-social-icon"></i>
</a>
<a target="_blank" href="https://www.youtube.com/c/BitCountryMetaverseNetwork">
<i class="fa fa-youtube home-social-icon"></i>
</a>
<a target="_blank" href="https://medium.com/bit-country">
<i class="fa fa-medium home-social-icon"></i>
</a>
<a target="_blank" href="https://www.facebook.com/bitcountry/">
<i class="fa fa-facebook-f home-social-icon"></i>
</a>
</div>
<div style="display: inline-block; margin: 10px;">
<a target="_blank"
href="https://drive.google.com/drive/folders/16zEYuTdij55WwUEb_D4-WDLky-wD58MD?usp=sharing">Brand
Pack</a> | <a href="/privacy-policy.html">Privacy Policy</a> | <a href="/terms.html">Terms of use</a>
</div>
</div>
</footer>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.2/flickity.pkgd.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".main-gallery").flickity({
// options
contain: true,
wrapAround: true,
});
});
// TODO: use http header frame options
if (window.top != window.self) {
top.location.href = document.location.href;
}
</script>
</body>
</html>