-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (70 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="rgb(0, 0, 0)">
<title>minesa hub</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" async></script>
</head>
<body>
<header>
<!-- Logo -->
<img class="springish" src="./assets/vectors/minesa-logo.svg" alt="Minesa's Logo" />
<!-- Dynamic Notification -->
<div tabindex="-1" class="dynamic-header springish">
<span>Navigation</span>
<ul class="content">
<a href="#team">
<li>Teams ✦</li>
</a>
<a href="#projects">
<li>Projects</li>
</a>
<a href="https://discord.gg/NdKBg9gFee" target="_blank">
<li>Connect us—Discord</li>
</a>
</ul>
<div class="circle" style="border-color: var(--secondary-color)"></div>
</div>
<!-- Mail Icon -->
<a href="mailto:minesa_hub@icloud.com?subject=I%20Want%20to%20Work%20Together" rel="noopener noreferrer">
<img class="springish" src="./assets/vectors/contact.svg" alt="Minesa's logo" draggable="false" />
</a>
</header>
<main>
<section id="team">
<p>
We’re just a
<u style="text-underline-offset: 5px">click away.</u>
</p>
<h1><span>Here, there,</span> and <span>everywhere!</span></h1>
<a href="./pages/team/mica.html" class="image-circle circle1">
<img src="./assets/images/mica_face.webp" alt="Mica" draggable="false" />
</a>
<a href="./pages/team/neo.html" class="image-circle circle2">
<img src="./assets/images/neo_face.webp" alt="Neo" draggable="false" />
</a>
<a href="./pages/team/saku.html" class="image-circle circle3">
<img src="./assets/images/saku_face.webp" alt="Saku" draggable="false" />
</a>
</section>
<section id="projects">
<h2>Projects</h2>
<p>We will showcase our projects soon.</p>
<div>
<a class="project" id="kaeru" href="./pages/projects/kaeru.html">
<p>Most powerful and functional ticket app.</p>
</a>
<div class="project" id="ita">
<a class="project" id="ita" target="_blank"
href="https://discord.com/oauth2/authorize?client_id=1277941369415139421&permissions=309774518272&integration_type=0&scope=bot">
<p>Your reply-thread app.</p>
</a>
</div>
</div>
</section>
</main>
</body>
</html>