-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (71 loc) · 1.96 KB
/
index.html
File metadata and controls
90 lines (71 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Mirava — Free Mirrors</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Background -->
<div class="bg"></div>
<!-- Hero -->
<header class="hero glass">
<div class="hero-content">
<!-- <img src="logo.png" alt="Mirava Logo" class="logo"> -->
<div class="hero-text">
<h1>Mirava</h1>
<p>
Access open mirrors and repositories for Linux, programming libraries,
and essential tools—fast, free, and uncensored.
</p>
<!-- <a href="#mirrors" class="hero-btn">Explore Mirrors</a> -->
</div>
</div>
</header>
<!-- Mirrors -->
<section class="section">
<h2>Mirrors</h2>
<div id="mirrorCards" class="mirror-grid"></div>
<!-- Copy feedback -->
<div id="copyToast" class="copy-toast glass">
Link copied to clipboard
</div>
</section>
<!-- Radar -->
<section class="section">
<h2>Mirror Connectivity Dashboard</h2>
<div class="dashboard glass">
<table id="mirrorTable">
<thead>
<tr>
<th>History</th>
<th>Mirror</th>
<th>Status</th>
<th>Hints</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<!-- Toast feedback -->
<div id="copyToast" class="copy-toast glass">
Link copied to clipboard
</div>
</section>
<!-- Contributors -->
<section class="section">
<h2>Contributors</h2>
<div class="contributors glass" id="contributors">
</div>
<p class="thanks">
Built by people who believe in a free and open internet 🌍
</p>
</section>
<!-- Footer -->
<footer class="footer glass">
© Mirava • Open Source • Freedom Through Access
</footer>
<script src="script.js"></script>
</body>
</html>