understanding commited on
Commit
c7b67d9
·
verified ·
1 Parent(s): 08c8a82

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +74 -0
templates/index.html ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>JetBot Status</title>
6
+ <style>
7
+ body {
8
+ background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
9
+ color: #ffffff;
10
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
11
+ height: 100vh;
12
+ margin: 0;
13
+ display: flex;
14
+ justify-content: center;
15
+ align-items: center;
16
+ overflow: hidden;
17
+ }
18
+
19
+ .container {
20
+ text-align: center;
21
+ animation: fadeIn 2s ease-in-out;
22
+ }
23
+
24
+ h1 {
25
+ font-size: 3em;
26
+ margin-bottom: 0.2em;
27
+ background: linear-gradient(90deg, #00d2ff, #3a7bd5);
28
+ -webkit-background-clip: text;
29
+ -webkit-text-fill-color: transparent;
30
+ animation: float 3s ease-in-out infinite;
31
+ }
32
+
33
+ p {
34
+ font-size: 1.2em;
35
+ opacity: 0.8;
36
+ animation: fadeIn 3s ease-in-out;
37
+ }
38
+
39
+ .pulse {
40
+ margin-top: 20px;
41
+ width: 20px;
42
+ height: 20px;
43
+ background-color: #00ffcc;
44
+ border-radius: 50%;
45
+ animation: pulse 2s infinite;
46
+ margin-left: auto;
47
+ margin-right: auto;
48
+ }
49
+
50
+ @keyframes fadeIn {
51
+ from { opacity: 0; transform: translateY(20px); }
52
+ to { opacity: 1; transform: translateY(0); }
53
+ }
54
+
55
+ @keyframes float {
56
+ 0%, 100% { transform: translateY(0); }
57
+ 50% { transform: translateY(-10px); }
58
+ }
59
+
60
+ @keyframes pulse {
61
+ 0% { transform: scale(0.95); opacity: 0.7; }
62
+ 70% { transform: scale(1); opacity: 1; }
63
+ 100% { transform: scale(0.95); opacity: 0.7; }
64
+ }
65
+ </style>
66
+ </head>
67
+ <body>
68
+ <div class="container">
69
+ <h1>🚀 <a href="https://t.me/JetMirror">JetBot</a> is Live!</h1>
70
+ <p>Everything is running smoothly.</p>
71
+ <div class="pulse"></div>
72
+ </div>
73
+ </body>
74
+ </html>