-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcallback.html
More file actions
56 lines (52 loc) · 2.45 KB
/
callback.html
File metadata and controls
56 lines (52 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submission Received - SpotOrigin</title>
<link rel="icon" href="favicon.png" type="image/png">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #0F172A; /* slate-900 */
color: #F8FAFC; /* slate-50 */
}
.animated-gradient {
background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899);
background-size: 200% 200%;
animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
</style>
</head>
<body class="antialiased">
<div class="relative min-h-screen flex items-center justify-center animated-gradient p-6">
<div class="absolute inset-0 bg-black/30"></div>
<div class="relative z-10 w-full max-w-2xl mx-auto bg-slate-800/50 backdrop-blur-lg border border-white/20 rounded-2xl p-8 md:p-12 text-center shadow-2xl">
<div class="text-5xl mb-6">✅</div>
<h1 class="text-3xl md:text-4xl font-extrabold tracking-tighter mb-4">
Thank You for Your Submission!
</h1>
<p class="text-lg text-slate-300 mb-8">
We've received your information and are excited about the possibility of working with you. Our team will review your submission and will be in touch shortly with the next steps.
</p>
<a href="index.html" class="inline-block bg-white text-indigo-600 font-bold px-8 py-3 rounded-full text-lg hover:bg-slate-200 transform hover:scale-105 transition-all duration-300 shadow-lg">
Return to Homepage
</a>
</div>
</div>
<footer class="absolute bottom-0 left-0 right-0">
<div class="container mx-auto px-6 py-8 text-center text-slate-400">
<p>© 2025 SpotOrigin. All rights reserved.</p>
</div>
</footer>
</body>
</html>