-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (98 loc) · 3.37 KB
/
index.html
File metadata and controls
108 lines (98 loc) · 3.37 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Micropilot (μ)</title>
<link rel="icon" href="letter_logo_inv.svg" type="image/svg+xml">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Georgia&display=swap" rel="stylesheet">
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'mono', serif;
background-color: #F5F4EF;
color: #222;
margin: 0;
padding: 40px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
line-height: 1.6;
font-size: 16px;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
.container {
max-width: 600px;
text-align: left;
}
/* Header styling */
.header {
font-family: 'Poppins', sans-serif;
font-size: 1.9em;
font-weight: 600;
color: #111;
margin-bottom: 1rem;
}
.header span {
font-family: 'Georgia', serif;
font-weight: normal;
font-size: 1em;
}
a {
color: #B02929; /* Light red-orange color */
text-decoration: none;
}
/* Paragraph styling */
p {
margin: 1.5rem 0;
color: #333;
}
/* Footer styling */
.footer {
margin-top: 2rem;
font-family: 'Poppins', sans-serif;
font-size: 0.9em;
color: #555;
display: flex;
justify-content: space-between;
width: 100%;
max-width: 600px;
border-top: 1px solid #ccc;
padding-top: 1rem;
}
.footer a {
text-decoration: none;
color: #222;
font-weight: bold;
padding: 0 0.5rem;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<header class="header">
Micropilot <span>(μ)</span>
</header>
<p>Micropilot is bringing general-purpose AI into the prosthetics and exoskeletons world. Currently a one-man initiative, Micropilot is actively seeking collaborators from various fields, including engineering, science, robotics, and company-building, who are passionate about solving challenges in assistive technologies.</p>
<p>We are focused on developing control models and learning algorithms that power today’s prosthetics and exoskeletons and lay the foundation for future human-augmented devices. If you’re interested in joining us on this journey, please <a href="mailto:sagar@micropilot.org">get in touch</a>.</p>
<p class="twitter">You can follow us on Twitter at <a href="https://twitter.com/__micropilot__" target="_blank">@__micropilot__</a></p>
</div>
<footer class="footer">
<div>Micropilot</div>
<div>
<a href="mailto:sagar@micropilot.org">Contact</a>
</div>
</footer>
</body>
</html>