-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththank-you.html
More file actions
112 lines (108 loc) · 3.65 KB
/
thank-you.html
File metadata and controls
112 lines (108 loc) · 3.65 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
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>You're on the list! - Boxy</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
.thank-you-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: linear-gradient(135deg, #FFFBF0 0%, #FAFAF8 100%);
}
.thank-you-content {
max-width: 600px;
padding: 2rem;
}
.checkmark {
font-size: 5rem;
margin-bottom: 2rem;
animation: scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
from { transform: scale(0); }
to { transform: scale(1); }
}
.next-steps {
background: white;
padding: 2rem;
border-radius: 12px;
margin-top: 2rem;
text-align: left;
}
.next-steps h3 {
margin-bottom: 1rem;
color: #2A2A2A;
}
.next-steps ul {
list-style: none;
padding: 0;
}
.next-steps li {
padding: 0.5rem 0;
border-bottom: 1px solid #F0F0F0;
}
.next-steps li:last-child {
border-bottom: none;
}
.social-links {
margin-top: 2rem;
display: flex;
gap: 1rem;
justify-content: center;
}
.social-links a {
padding: 0.75rem 1.5rem;
background: #0066FF;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}
.social-links a:hover {
background: #0052CC;
transform: translateY(-2px);
}
</style>
</head>
<body>
<div class="thank-you-page">
<div class="thank-you-content">
<div class="checkmark">✓</div>
<h1 class="hero-title" style="font-size: 2.5rem;">YOU'RE ON THE LIST!</h1>
<p class="hero-subtitle" style="margin-bottom: 1rem;">
Check your email for confirmation. We'll keep you updated on launch timing,
early-bird pricing, and behind-the-scenes updates.
</p>
<div class="next-steps">
<h3>What happens next?</h3>
<ul>
<li>📧 <strong>Confirmation email</strong> arriving in ~5 minutes</li>
<li>📅 <strong>Launch updates</strong> as we approach Q1 2026</li>
<li>🎟️ <strong>Early-bird pricing</strong> (€2,400 vs. €2,600 retail)</li>
<li>👥 <strong>Optional:</strong> Join customer interviews for input on features</li>
</ul>
</div>
<div class="social-links">
<a href="/">← Back to Home</a>
</div>
<p class="small-text" style="margin-top: 2rem; color: #666;">
Questions? Email us at <a href="mailto:hello@boxy.ai" style="color: #0066FF;">hello@boxy.ai</a>
</p>
</div>
</div>
<script>
// Track thank you page view
if (window._paq) {
window._paq.push(['trackGoal', 1]); // Goal ID 1 = Email Signup
}
console.log('✓ Thank you page loaded - conversion tracked');
</script>
</body>
</html>