-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (76 loc) · 2.84 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon - Bimbala</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@keyframes pulse {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.custom-pulse {
animation: pulse 2s infinite;
}
</style>
</head>
<body
class="min-h-screen bg-gradient-to-br from-indigo-100 via-white to-purple-100 flex items-center justify-center p-4">
<div class="max-w-md w-full space-y-8 text-center">
<!-- Logo Circle -->
<div class="mx-auto w-24 h-24 bg-indigo-600 rounded-full flex items-center justify-center custom-pulse">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 text-white" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<!-- Main Content -->
<div class="space-y-6">
<h1 class="text-5xl font-bold text-gray-900 tracking-tight">
Coming Soon
</h1>
<p class="text-xl text-gray-600">
Something amazing is in the works. Stay tuned!
</p>
<!-- Email Form -->
<form class="mt-8 space-y-3">
<div class="flex items-center justify-center space-x-2">
<input type="email" placeholder="Enter your email"
class="px-4 py-2 w-64 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent"
required>
<button type="submit"
class="bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700 transition-colors duration-200">
Notify Me
</button>
</div>
</form>
<!-- Contact Info -->
<div class="mt-8 text-gray-600">
<p>Questions? Contact us at:</p>
<a href="mailto:[email protected]"
class="text-indigo-600 hover:text-indigo-800 transition-colors duration-200">
</a>
</div>
</div>
<!-- Social Link -->
<div class="mt-12 flex justify-center">
<a href="https://www.linkedin.com/company/bimbala/" target="_blank" rel="noopener noreferrer"
class="w-10 h-10 bg-gray-900 rounded-full hover:bg-gray-700 transition-colors duration-200 cursor-pointer flex items-center justify-center">
<svg class="w-5 h-5 text-white" fill="currentColor" viewBox="0 0 24 24">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
</a>
</div>
</div>
</body>
</html>