forked from apu52/METAVERSE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacynotice.html
303 lines (258 loc) Β· 12.7 KB
/
privacynotice.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>METAVERSE</title>
<!-- Primary Meta Tags -->
<title></title>
<meta name="title" content="METAVERSE" />
<meta name="description"
content="Welcome to the Metaverse Front-End Playground β your gateway to the future of web development in the metaverse! ππ Metaverse Front-End Playground is an open-source repository created to empower developers to explore, innovate, and collaborate in the metaverse space. Whether you're a seasoned developer looking to showcase your metaverse projects or a newcomer eager to dive into the virtual realm, you're invited to join our dynamic community!" />
<meta name="language" content="English">
<meta name="keywords"
content="METAVERSE, Frontend Projects, Coding, Web Development, Projects, Stopwatch, Calculator.">
<!--
- favicon
-->
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./images/metaverse.png" type="image/x-icon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/1a1ffb78ee.js" crossorigin="anonymous"></script>
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/about.css">
<link rel="stylesheet" href="./assets/css/scroll.css">
<link rel="stylesheet" href="./assets/css/contributors.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Sofia&effect=neon|outline|emboss|shadow-multiple">
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<style>
.circle {
position: absolute;
width: 25px;
height: 25px;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, rgba(73, 232, 247, 0.466), rgba(141, 38, 172, 0.5));
transition: transform 0.1s, left 0.1s, top 0.1s;
box-shadow: 0 0 20px #23bdf5,
0 0 60px #f523f5,
0 0 100px #23bdf5;
}
.circle-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999;
}
</style>
</head>
<!-- Light-Dark theme SWITCH -->
<!-- <p class="invert-color" style="position: sticky; top: 30px; z-index:100; margin-left: 30px;">Theme :</p> -->
<body>
<div class="circle-container">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
circles.forEach(function (circle) {
circle.x = 0;
circle.y = 0;
});
window.addEventListener("mousemove", function (e) {
coords.x = e.pageX;
coords.y = e.pageY - window.scrollY; // Adjust for vertical scroll position
});
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = `${x - 12}px`;
circle.style.top = `${y - 12}px`;
circle.style.transform = `scale(${(circles.length - index) / circles.length})`;
const nextCircle = circles[index + 1] || circles[0];
circle.x = x;
circle.y = y;
x += (nextCircle.x - x) * 0.25;
y += (nextCircle.y - y) * 0.25;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
});
</script>
<div class="main">
<div class="container">
<div class="radio-wrapper">
<div class="btn">
<a id="aid" class="nav-link" href="index.html">Home</a>
<label class="number">r1</label>
</div>
</div>
<div class="radio-wrapper">
<!-- <input type="radio" id="value-2" name="btn" class="input"> -->
<div class="btn">
<a id="aid" class="nav-link" href="about.html">About</a>
<!-- <span >ABOUT</span> -->
<!-- <span aria-hidden="" class="btn__glitch">_Cyberπ¦Ύ</span> -->
<label class="number">r2</label>
</div>
</div>
<div class="radio-wrapper">
<!-- <input type="radio" id="value-3" name="btn" class="input"> -->
<div class="btn">
<a id="aid" class="nav-link" href="contact.html">
Contact
</a>
<!-- <span aria-hidden=""></span> -->
<!-- <span aria-hidden="" class="btn__glitch">CONTACT</span> -->
<label class="number">r3</label>
</div>
</div>
</div>
<main>
<div class="main-content">
<div class="sub-main-content">
<div class="heading1">
<div class="heading">
<span>P</span><span>R</span><span>I</span><span>V</span><span>A</span><span>C</span><span>Y</span><span> </span><span> </span><span>N</span><span>O</span><span>T</span><span>I</span><span>C</span><span>E</span>
</div>
<label class="theme-toggle" for="themeToggle" style="z-index: 100; margin-top: -270px; ">
<input type="checkbox" id="themeToggle" onclick="toggleTheme()" checked aria-label="Switch theme mode">
<span class="slider"></span>
</label>
</div>
<br>
<br>
<br>
<br>
<!-- About part -->
<div class="contributors">
<p id="para">Metaverse Front-End Playground is committed to protecting your privacy. This Privacy Notice explains how we collect, use, disclose, and safeguard your information when you visit our open-source repository and community platform.</p>
<h2 >1. Information We Collect</h2>
<p id="para"><strong>Personal Data</strong>: We may collect personal data that you voluntarily provide to us when you register, participate in discussions, submit projects, or contact us. This may include your name, email address, and any other information you choose to provide.</p>
<p id="para"><strong>Usage Data</strong>: We may automatically collect information about how you interact with our platform, such as your IP address, browser type, access times, and pages viewed.</p>
<h2 >2. How We Use Your Information</h2>
<p id="para"><strong>To Provide and Improve Our Services</strong>: We use the information we collect to operate, maintain, and improve our platform.</p>
<p id="para"><strong>To Communicate with You</strong>: We may use your information to respond to your inquiries, provide support, and send you updates and information about our platform.</p>
<p id="para"><strong>To Ensure Security</strong>: We use the information to protect the security of our platform and to detect and prevent fraud or other harmful activities.</p>
<h2 >3. Sharing Your Information</h2>
<p id="para">We do not sell or rent your personal information to third parties. We may share your information in the following circumstances:</p>
<p id="para"><strong>With Your Consent</strong>: We may share your information with third parties if you have given us your explicit consent to do so.</p>
<p id="para"><strong>For Legal Reasons</strong>: We may disclose your information if required to do so by law or in response to valid requests by public authorities.</p>
<h2 >4. Your Rights and Choices</h2>
<p id="para"><strong>Access and Correction</strong>: You have the right to access and update your personal information. You can do this by logging into your account or contacting us directly.</p>
<p id="para"><strong>Data Deletion</strong>: You can request the deletion of your personal data by contacting us. We will delete your data unless we are required to retain it for legal reasons.</p>
<h2 >5. Security</h2>
<p id="para">We implement appropriate technical and organizational measures to protect your personal information from unauthorized access, use, or disclosure.</p>
<h2 >6. Changes to This Privacy Notice</h2>
<p id="para">We may update this Privacy Notice from time to time. We will notify you of any changes by posting the new Privacy Notice on our platform. You are advised to review this Privacy Notice periodically for any changes.</p>
</div>
</main>
<!-- FOOTER -->
<div class="main" id="footer">
<div>
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="wave-creation">
<use xlink:href="#gentle-wave" x="48" y="0" fill="rgba(255,255,133,0.9)" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(153,51,255,0.5)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgb(238,106,220,0.3)" />
<use xlink:href="#gentle-wave" x="48" y="7" fill="#B616C7" />
</g>
</svg>
</div>
<footer class="page-footer font-small unique-color-dark pt-4">
<div class="container1">
<div class="list-unstyled list-inline text-center py-2 text-black">
<br>
<br>
<div class="socials-text" style="text-align: center; margin-bottom:50px">
<h7>Developed with β€οΈ by <b>METAVERSE</b> Collaborators</h7>
<br>
<br>
<a href="https://github.com/apu52/METAVERSE" target="_blank"
style="font-size: 20px; font-style:cursive;color: rgb(215, 213, 85);">Make sure you
checkout our socials and also β <b class="METAVERSE" style="cursor: pointer;">METAVERSE</b> on github</a>
</div>
<ul class="socials">
<li><a href="https://github.com/apu52/METAVERSE" aria-label="Follow me on Github" title="Github (External Link)"
rel="noopener noreferrer" target="_blank"><i class="fa-brands fa-github"></i></a></li>
<li><a href="https://twitter.com/ArpanCh40193288" aria-label="Follow me on Twitter" title="Twitter (External Link)"
rel="noopener noreferrer" target="_blank"><i class="fa-brands fa-x-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/arpan-chowdhury-775294251" aria-label="Follow me on Linkedin"
title="Linkedin (External Link)" rel="noopener noreferrer" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
<div class="policy">
<a href="privacynotice.html" target="_blank"
style="font-size: 20px; font-style:cursive;color: rgb(215, 213, 85);"> Privacy Notice</a>
<a href="copyright.html" target="_blank"
style="font-size: 20px; font-style:cursive;color: rgb(215, 213, 85);"> Copyright Policy</a>
</div>
</div>
</footer>
</div>
</section>
</div>
<!-- SCROLL TO TOP BUTTON -->
<div id="progress">
<span id="progress-value">🠕</span>
</div>
<!--
- custom js link
-->
<script src="./assets/js/index.js"></script>
<script src="./assets/js/script.js"></script>
<script src="./assets/js/scroll.js"></script>
<script src="./assets/js/contributors.js"></script>
<script src="./assets/js/mouse_transition.js"></script>
</body>
</html>