-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
124 lines (116 loc) · 3.89 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
<!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" />
<title>Orpheus Leap</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css"
/>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/simple-grid.css" />
<meta name="title" content="Orpheus Leap " />
<meta
name="description"
content="A Hack Club themed microcontroller board based on the Arduino-compatible Pro Micro board"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://metatags.io/" />
<meta property="og:title" content="Orpheus Leap " />
<meta
property="og:description"
content="A Hack Club themed microcontroller board based on the Arduino-compatible Pro Micro board"
/>
<meta
property="og:image"
content="https://cloud-isnfo2hml.vercel.app/untitled_design-10.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://metatags.io/" />
<meta property="twitter:title" content="Orpheus Leap " />
<meta
property="twitter:description"
content="A Hack Club themed microcontroller board based on the Arduino-compatible Pro Micro board"
/>
<meta
property="twitter:image"
content="https://cloud-isnfo2hml.vercel.app/untitled_design-10.png"
/>
<script src="/script.js" defer></script>
</head>
<body style="margin-left: 0px; margin-top: 0px">
<div
class="container vertical-center"
style="background-color: #252429; padding: 30px; border-radius: 30px"
>
<div class="row">
<div class="col-6">
<img
src="https://cloud-jrox24mrn.vercel.app/orpheus_leap_micro_final.png"
class="theimage"
/>
</div>
<div class="col-6" style="margin-top: 20px" id="textareaa">
<h3 id="subheader">
Introducing the <span
style="
background-color: #ec3750;
padding: 2px 6px;
border-radius: 8px;
"
>all-new</span
>
</h3>
<h1 style="line-height: 0.5; font-weight: bold" id="mainheader">
Orpheus <span style="color: #ec3750">Leap</span>
</h1>
<p style="margin-top: -7px; font-size: 1.2em" id="text">
A microcontroller board based on the Arduino-compatible Pro Micro
board with all the features. It's shaped like Orpheus, Hack Club's
friendly mascot and built to commerate the Hack Club Summer of
Making!
<span id="kevincreditalt"
>This PCB was designed by
<a href="https://github.com/bykevinyang">Kevin Yang</a> (a Hack
Clubber from MA).</span
>
</p>
<button
class="css-1rkl5kp"
onclick="showtechicaldetails()"
id="tech-button"
>
Technical details
</button>
<a
href="https://leap-manual.hackclub.com/leap"
style="text-decoration: none"
>
<button class="css-1rkl5kp" id="tech-button">Documentation</button>
</a>
</div>
</div>
</div>
<div
style="
margin: auto;
position: absolute;
bottom: 30px;
text-align: center;
width: 100%;
"
id="kevincredit"
>
<span
style="background-color: #252429; padding: 8px 12px; border-radius: 8px"
>
PCB designed by
<a href="https://github.com/bykevinyang">Kevin Yang</a></span
>
</div>
</body>
</html>