-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
133 lines (124 loc) · 4.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="BrainiacWiz aims to enhance knowledge and learning through interactive multiplayer quizzes. Join now and test your knowledge!, Who knows you might just Win?" />
<meta
name="keywords"
content="BrainiacWiz, quiz, multiplayer quiz, knowledge, learning, interactive quiz" />
<meta name="author" content="BrainiacWiz" />
<meta name="robots" content="index, follow" />
<title>Homepage | BrainiacWiz</title>
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet" />
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/fontawesome-6.5.2/css/all.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png" />
<link rel="manifest" href="/assets/img/site.webmanifest" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SZ59WLGCXV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-SZ59WLGCXV');
</script>
<!-- sentry error tracking script -->
<script
async
src="https://js.sentry-cdn.com/28e0779f6d4ee26fe0de02fcc3239280.min.js"
crossorigin="anonymous"></script>
</head>
<body>
<main>
<div class="landing-overlay">
<div class="landing-content">
<img src="/assets/img/brainacwiz-logo.jpeg" alt="Placeholder Image" />
<h1>BraniacWiz</h1>
<h3>Ready to Win?</h3>
<p>Play now, play with your friends</p>
<div class="overlay-buttons">
<button id="explore-btn"
>Explore <i class="fa-solid fa-magnifying-glass-dollar fa-beat-fade"></i
></button>
<!-- sign-in btn -->
<a href="/pages/auth/login.html"
><button id="sign-in-btn"
>Sign In <i class="fa-solid fa-sign-in fa-beat-fade"></i></button
></a>
</div>
</div>
</div>
<div class="quiz-options">
<span id="close-btn"><i class="fa-regular fa-circle-xmark"></i></span>
<div class="head">
<h1>Pick and Option</h1>
</div>
<div class="body">
<a class="host-btn" href=""
><button id=""
>Host Quiz <i class="fa-regular fa-square-plus fa-fade"></i></button
></a>
<a class="join-btn" href=""
><button id=""
>Join Quiz
<i class="fa-solid fa-arrow-right-to-bracket fa-fade"></i></button
></a>
</div>
</div>
<section class="main-content">
<div class="main-header">
<div class="logo">
<a href="/pages/ranking.html"
><img src="/assets/img/brainacwiz-logo.jpeg" alt="Logo"
/></a>
</div>
<div class="wallet-details">
<div class="wallet-address">
<p id="wallet-address-val"></p>
</div>
<div class="circular-button">
<button class="wallet-btn"><i class="bx bx-wallet"></i></button>
</div>
</div>
</div>
<div class="main-heading"> <h1> CATEGORIES </h1> </div>
<!-- quiz topic container -->
<div class="container"> </div>
<footer class="">
<nav class="navbar">
<ul>
<li>
<a href="#"><i class="bx bx-home"></i><p>Home</p></a>
</li>
<li>
<a href="/pages/ranking.html"
><i class="bx bx-book"></i><p>Leaderboard</p></a
>
</li>
<li>
<a href="/pages/auth/login.html"
><i class="bx bx-user-circle"></i><p>Login</p></a
>
</li>
<li>
<a href="/pages/walletAuth/walletDirect.html"
><i class="bx bx-help-circle"></i><p>Help</p></a
>
</li>
</ul>
</nav>
</footer>
</section>
</main>
<script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js/dist/web3.min.js"></script>
<script type="module" defer src="/dist/index.bundle.js"></script>
<!-- load navbar -->
<script type="module" src="/assets/js/utils/setnavbar.js"></script>
</body>
</html>