-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1 KB
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Makinaut</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: linear-gradient(to right, #141E30, #243B55);
color: #fff;
text-align: center;
}
h1 {
font-size: 3em;
margin-bottom: 0.5em;
}
p {
font-size: 1.2em;
max-width: 500px;
margin: 0 auto;
}
.tagline {
font-size: 1.5em;
margin-top: 1em;
color: #00FFD1;
}
</style>
</head>
<body>
<div>
<h1>🚀 Makinaut is Launching Soon</h1>
<p class="tagline">Plug. Code. Control.</p>
<p>A modular web framework for makers, builders, and machine pilots. Build hardware apps from a simple config file and launch your idea — fast.</p>
</div>
</body>
</html>