-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththanks.html
More file actions
51 lines (51 loc) · 1.19 KB
/
thanks.html
File metadata and controls
51 lines (51 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Thanks – Codemule Waitlist</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
margin: 0;
min-height: 100vh;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #020617;
color: #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
}
.shell {
max-width: 480px;
padding: 24px 20px;
text-align: center;
}
h1 {
font-size: 24px;
margin-bottom: 8px;
}
p {
font-size: 14px;
color: #9ca3af;
margin-bottom: 16px;
}
a {
display: inline-block;
padding: 9px 18px;
border-radius: 999px;
background: #4f46e5;
color: white;
text-decoration: none;
font-weight: 600;
font-size: 14px;
}
</style>
</head>
<body>
<div class="shell">
<h1>You're on the list ✅</h1>
<p>Thanks for joining the Codemule waitlist. We’ll email you when the Phase 1 dev assistant is ready.</p>
<a href="https://codemule.io">← Back to codemule.io</a>
</div>
</body>
</html>