-
Notifications
You must be signed in to change notification settings - Fork 418
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (101 loc) · 3.47 KB
/
Copy pathindex.html
File metadata and controls
110 lines (101 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Psycho bot | WhatsApp Pairing</title>
<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=Outfit:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--primary: #5865F2;
--secondary: #eb459e;
--bg: #0a0a0c;
--card-bg: rgba(255, 255, 255, 0.05);
--text: #ffffff;
--text-dim: #a0a0a0;
}
body {
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
background-color: var(--bg);
color: var(--text);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
background-image:
radial-gradient(circle at 20% 20%, rgba(88, 101, 242, 0.15) 0%, transparent 40%),
radial-gradient(circle at 80% 80%, rgba(235, 69, 158, 0.15) 0%, transparent 40%);
}
.container {
text-align: center;
z-index: 1;
padding: 2rem;
background: var(--card-bg);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
max-width: 400px;
width: 90%;
animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 600;
}
p {
color: var(--text-dim);
font-weight: 300;
line-height: 1.6;
margin-bottom: 2rem;
}
.btn {
display: inline-block;
padding: 12px 32px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
text-decoration: none;
border-radius: 12px;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
filter: brightness(1.1);
}
.btn:active {
transform: translateY(0);
}
.logo {
font-size: 3rem;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">🤖</div>
<h1>Psycho bot</h1>
<p>Unlock the full power of your WhatsApp. Automate reactions, extract view-once media, and respond with AI effortlessly.</p>
<a href="/pair" class="btn">Pair with Code</a>
<a href="/qr" class="btn" style="background: linear-gradient(45deg, #eb459e, #5865F2); margin-left: 10px;">Scan QR Code</a>
</div>
</body>
</html>