mediarelationsroshanaf commited on
Commit
29f7355
·
verified ·
1 Parent(s): 33d8106

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +239 -0
index.html CHANGED
@@ -1,4 +1,243 @@
1
  <!DOCTYPE html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  <html>
3
  <head>
4
  <meta charset="utf-8" />
 
1
  <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AI Assistant Activated | Hourly 150MB</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
+ <style>
11
+ .animate-float {
12
+ animation: float 6s ease-in-out infinite;
13
+ }
14
+ @keyframes float {
15
+ 0% { transform: translateY(0px) rotate(0deg); }
16
+ 50% { transform: translateY(-20px) rotate(3deg); }
17
+ 100% { transform: translateY(0px) rotate(0deg); }
18
+ }
19
+ .gradient-text {
20
+ background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
21
+ -webkit-background-clip: text;
22
+ background-clip: text;
23
+ color: transparent;
24
+ background-size: 300% 300%;
25
+ animation: gradient 8s ease infinite;
26
+ }
27
+ @keyframes gradient {
28
+ 0% { background-position: 0% 50%; }
29
+ 50% { background-position: 100% 50%; }
30
+ 100% { background-position: 0% 50%; }
31
+ }
32
+ .card-hover {
33
+ transition: all 0.3s ease;
34
+ }
35
+ .card-hover:hover {
36
+ transform: translateY(-5px) translateZ(0);
37
+ }
38
+ .pulse {
39
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
40
+ }
41
+ @keyframes pulse {
42
+ 0%, 100% { opacity: 1; }
43
+ 50% { opacity: 0.7; }
44
+ }
45
+ .smooth-shadow {
46
+ box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.15);
47
+ }
48
+ .input-shadow:focus {
49
+ box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
50
+ }
51
+ .progress-bar {
52
+ animation: progress 90s linear 1 forwards;
53
+ }
54
+ @keyframes progress {
55
+ 0% { width: 100%; }
56
+ 100% { width: 0%; }
57
+ }
58
+ </style>
59
+ </head>
60
+ <body class="font-['Inter'] bg-gradient-to-br from-gray-50 to-indigo-50 min-h-screen flex items-center justify-center p-4 sm:p-6">
61
+ <div class="max-w-4xl w-full mx-auto">
62
+ <!-- Notification Header -->
63
+ <div class="bg-indigo-600/10 border border-indigo-600/20 text-indigo-800 px-4 py-3 rounded-lg mb-8 flex items-start">
64
+ <div class="flex-shrink-0 pt-1 mr-3">
65
+ <i class="fas fa-check-circle text-indigo-600"></i>
66
+ </div>
67
+ <div class="flex-1">
68
+ <p class="font-medium">Hourly 150MB successfully activated!</p>
69
+ <p class="text-sm text-indigo-700/90 mt-1">Your AI assistant is now ready with maximum resources.</p>
70
+ </div>
71
+ <button class="text-indigo-600 hover:text-indigo-800 ml-2">
72
+ <i class="fas fa-times"></i>
73
+ </button>
74
+ </div>
75
+
76
+ <!-- Main Content -->
77
+ <div class="bg-white rounded-2xl smooth-shadow overflow-hidden">
78
+ <!-- Status Bar -->
79
+ <div class="bg-gradient-to-r from-indigo-500 to-purple-500 text-white px-6 py-4 flex flex-col sm:flex-row sm:items-center sm:justify-between">
80
+ <div class="flex items-center mb-3 sm:mb-0">
81
+ <div class="bg-white/20 rounded-full p-2 mr-3">
82
+ <i class="fas fa-bolt text-yellow-200 text-sm"></i>
83
+ </div>
84
+ <div>
85
+ <h2 class="font-bold text-lg sm:text-xl">AI Assistant Pro</h2>
86
+ <p class="text-xs text-indigo-100 flex items-center">
87
+ <span class="inline-block w-2 h-2 bg-green-300 rounded-full mr-1"></span>
88
+ Active connection
89
+ </p>
90
+ </div>
91
+ </div>
92
+
93
+ <div class="flex items-center space-x-4">
94
+ <div class="text-center">
95
+ <p class="text-xs text-indigo-100 mb-1">Session Time</p>
96
+ <p class="text-sm font-medium">60:00</p>
97
+ </div>
98
+ <div class="hidden sm:block h-6 w-px bg-indigo-400"></div>
99
+ <div class="text-center">
100
+ <p class="text-xs text-indigo-100 mb-1">Resources</p>
101
+ <div class="flex items-center">
102
+ <i class="fas fa-memory text-xs mr-1 text-indigo-100"></i>
103
+ <p class="text-sm font-medium">150MB</p>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </div>
108
+
109
+ <!-- Progress Bar -->
110
+ <div class="h-1.5 bg-indigo-100 relative overflow-hidden">
111
+ <div class="progress-bar h-full bg-indigo-500 absolute top-0 left-0"></div>
112
+ </div>
113
+
114
+ <!-- Avatar Section -->
115
+ <div class="flex items-center justify-center py-8 px-6">
116
+ <div class="relative">
117
+ <div class="absolute -inset-4 bg-indigo-500/10 rounded-full blur-lg animate-pulse"></div>
118
+ <div class="relative bg-white p-5 rounded-full shadow-lg animate-float">
119
+ <div class="w-24 h-24 bg-gradient-to-br from-indigo-100 to-purple-100 rounded-full flex items-center justify-center">
120
+ <i class="fas fa-robot text-4xl gradient-text"></i>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </div>
125
+
126
+ <div class="px-6 pb-1">
127
+ <h1 class="text-3xl sm:text-4xl font-bold text-center text-gray-800 mb-3">
128
+ <span class="gradient-text">Ready to Assist</span>
129
+ <span class="text-gray-500">You!</span>
130
+ </h1>
131
+ <p class="text-gray-500 text-center max-w-2xl mx-auto mb-8">
132
+ I'm powered up with 150MB of resources to provide you with the best assistance possible.
133
+ Ask me anything and I'll respond with thoughtful, detailed answers.
134
+ </p>
135
+ </div>
136
+
137
+ <!-- Features Section -->
138
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-5 px-6 py-4 bg-gradient-to-b from-indigo-50 to-white">
139
+ <div class="bg-white rounded-xl p-5 card-hover shadow-sm border border-gray-100">
140
+ <div class="bg-indigo-50 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
141
+ <i class="fas fa-bolt text-xl text-indigo-500"></i>
142
+ </div>
143
+ <h3 class="font-semibold text-lg mb-2 text-gray-800">High-Performance</h3>
144
+ <p class="text-gray-500 text-sm">Optimized responses with maximum allocated resources</p>
145
+ </div>
146
+ <div class="bg-white rounded-xl p-5 card-hover shadow-sm border border-gray-100">
147
+ <div class="bg-purple-50 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
148
+ <i class="fas fa-brain text-xl text-purple-500"></i>
149
+ </div>
150
+ <h3 class="font-semibold text-lg mb-2 text-gray-800">Enhanced AI</h3>
151
+ <p class="text-gray-500 text-sm">More memory means better comprehension and recall</p>
152
+ </div>
153
+ <div class="bg-white rounded-xl p-5 card-hover shadow-sm border border-gray-100">
154
+ <div class="bg-pink-50 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
155
+ <i class="fas fa-code text-xl text-pink-500"></i>
156
+ </div>
157
+ <h3 class="font-semibold text-lg mb-2 text-gray-800">Code Support</h3>
158
+ <p class="text-gray-500 text-sm">Full programming assistance with syntax highlighting</p>
159
+ </div>
160
+ </div>
161
+
162
+ <!-- Input Section -->
163
+ <div class="px-6 py-6">
164
+ <div class="relative">
165
+ <textarea
166
+ class="w-full px-5 py-4 bg-gray-50 rounded-2xl border-none input-shadow focus:ring-2 focus:ring-indigo-200 focus:border-transparent resize-none"
167
+ rows="3"
168
+ placeholder="Ask your question here... (150MB resources allocated)"
169
+ autofocus
170
+ ></textarea>
171
+ <button class="absolute right-4 bottom-4 bg-indigo-500 hover:bg-indigo-600 text-white rounded-xl px-5 py-2 transition-all flex items-center shadow-md hover:shadow-lg">
172
+ <i class="fas fa-paper-plane mr-2"></i>
173
+ <span>Send</span>
174
+ </button>
175
+ </div>
176
+ <p class="text-xs text-gray-400 mt-3 flex items-center">
177
+ <i class="fas fa-info-circle mr-1.5"></i>
178
+ Your data and conversations are processed securely with your allocated 150MB resources
179
+ </p>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Footer -->
184
+ <div class="flex flex-col sm:flex-row items-center justify-between mt-6 text-sm text-gray-500">
185
+ <div class="flex items-center mb-3 sm:mb-0">
186
+ <div class="h-3 w-3 rounded-full bg-green-400 mr-2 pulse"></div>
187
+ <span>System status: Operational</span>
188
+ </div>
189
+ <div class="flex items-center space-x-4">
190
+ <a href="#" class="hover:text-indigo-600 transition-colors"><i class="fas fa-shield-alt mr-1"></i> Security</a>
191
+ <a href="#" class="hover:text-indigo-600 transition-colors"><i class="fas fa-cog mr-1"></i> Settings</a>
192
+ <a href="#" class="hover:text-indigo-600 transition-colors"><i class="fas fa-question-circle mr-1"></i> Help</a>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <script>
198
+ document.addEventListener('DOMContentLoaded', function() {
199
+ // Update session timer
200
+ function updateTimer() {
201
+ let minutes = 59;
202
+ let seconds = 59;
203
+
204
+ const timerElement = document.querySelector('.status-timer');
205
+ const timerInterval = setInterval(() => {
206
+ seconds--;
207
+ if (seconds < 0) {
208
+ seconds = 59;
209
+ minutes--;
210
+ }
211
+
212
+ if (minutes < 0) {
213
+ clearInterval(timerInterval);
214
+ } else {
215
+ timerElement.textContent = `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
216
+ }
217
+ }, 1000);
218
+ }
219
+
220
+ updateTimer();
221
+
222
+ // Textarea auto-resize
223
+ const textarea = document.querySelector('textarea');
224
+ textarea.addEventListener('input', function() {
225
+ this.style.height = 'auto';
226
+ this.style.height = (this.scrollHeight) + 'px';
227
+ });
228
+
229
+ // Add decoration to text on hover
230
+ const sendButton = document.querySelector('button');
231
+ sendButton.addEventListener('mouseenter', function() {
232
+ this.innerHTML = '<i class="fas fa-paper-plane mr-2 animate-bounce"></i><span>Send</span>';
233
+ });
234
+ sendButton.addEventListener('mouseleave', function() {
235
+ this.innerHTML = '<i class="fas fa-paper-plane mr-2"></i><span>Send</span>';
236
+ });
237
+ });
238
+ </script>
239
+ </body>
240
+ </html><!DOCTYPE html>
241
  <html>
242
  <head>
243
  <meta charset="utf-8" />