SergTsn commited on
Commit
8e7cd78
·
verified ·
1 Parent(s): 64de6a7

помести на фон с индустриальной тематикой - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +382 -79
index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Responsive Header with Contact Icons</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
@@ -22,6 +22,7 @@
22
  padding: 1rem;
23
  border-top: 1px solid #e5e7eb;
24
  z-index: 10;
 
25
  }
26
  }
27
  .contact-icon {
@@ -36,24 +37,32 @@
36
  background-clip: text;
37
  color: transparent;
38
  }
39
- </style>
40
- <style>
41
- .laser-ray {
42
- position: absolute;
43
- height: 1px;
44
- background: linear-gradient(90deg, rgba(0,255,255,0), cyan, rgba(0,255,255,0));
45
- box-shadow: 0 0 10px cyan;
46
- transform-origin: left center;
47
- animation: laser 3s infinite linear;
48
- opacity: 0.7;
49
  }
50
-
51
- @keyframes laser {
52
- 0% { transform: rotate(0deg) translateX(0); width: 0; }
53
- 50% { width: 100vw; }
54
- 100% { transform: rotate(360deg) translateX(0); width: 0; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  }
56
-
57
  .wave {
58
  position: absolute;
59
  bottom: 0;
@@ -64,37 +73,71 @@
64
  background-position: 0 bottom;
65
  transform-origin: center bottom;
66
  animation: wave 12s linear infinite;
 
67
  }
68
-
69
- .wave:nth-child(2) {
70
- animation-delay: -3s;
71
- opacity: 0.5;
72
- }
73
-
74
- .wave:nth-child(3) {
75
- animation-delay: -6s;
76
- opacity: 0.3;
77
- }
78
-
79
  @keyframes wave {
80
  0% { transform: translateX(0) translateZ(0) scaleY(1); }
81
  50% { transform: translateX(-25%) translateZ(0) scaleY(0.5); }
82
  100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
83
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  </style>
85
  </head>
86
- <body class="bg-gray-50 relative overflow-hidden">
87
- <div id="waves" class="absolute inset-0 -z-10 opacity-20"></div>
88
- <header class="bg-white shadow-sm">
89
- <div class="container mx-auto px-4 py-4">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  <div class="flex items-center justify-between">
91
  <!-- Mobile menu button -->
92
- <button class="md:hidden text-gray-700 focus:outline-none" aria-label="Toggle menu">
93
  <i class="fas fa-bars text-xl"></i>
94
  </button>
 
95
  <!-- Logo and Company Name -->
96
  <div class="flex items-center space-x-3">
97
- <div class="w-10 h-10 rounded-full bg-blue-500 flex items-center justify-center">
98
  <span class="text-white font-bold text-xl">C</span>
99
  </div>
100
  <h1 class="text-2xl font-bold logo-text">ConnectHub</h1>
@@ -102,33 +145,32 @@
102
 
103
  <!-- Contact Icons -->
104
  <div class="flex items-center space-x-4 md:space-x-6">
105
- <a href="tel:+1234567890" class="contact-icon group">
106
  <div class="flex items-center space-x-2">
107
- <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center group-hover:bg-blue-200">
108
  <i class="fas fa-phone text-blue-600"></i>
109
  </div>
110
  <span class="hidden md:inline-block text-gray-700 font-medium">+1 (234) 567-890</span>
111
  </div>
112
  </a>
113
 
114
- <a href="https://wa.me/1234567890" target="_blank" class="contact-icon group">
115
  <div class="flex items-center space-x-2">
116
- <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center group-hover:bg-green-200">
117
  <i class="fab fa-whatsapp text-green-600"></i>
118
  </div>
119
  <span class="hidden md:inline-block text-gray-700 font-medium">WhatsApp</span>
120
  </div>
121
  </a>
122
 
123
- <a href="https://t.me/username" target="_blank" class="contact-icon group">
124
  <div class="flex items-center space-x-2">
125
- <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center group-hover:bg-blue-200">
126
  <i class="fab fa-telegram text-blue-500"></i>
127
  </div>
128
  <span class="hidden md:inline-block text-gray-700 font-medium">Telegram</span>
129
  </div>
130
  </a>
131
-
132
  </div>
133
  </div>
134
  </div>
@@ -137,51 +179,270 @@
137
  <!-- Main Navigation Menu -->
138
  <nav class="bg-white shadow-sm">
139
  <div class="container mx-auto px-4">
140
- <div class="hidden md:flex justify-center space-x-8 py-4">
141
- <a href="#" class="text-gray-700 hover:text-blue-600 font-medium py-2">О нас</a>
142
- <a href="#" class="text-gray-700 hover:text-blue-600 font-medium py-2">Услуги</a>
143
- <a href="#" class="text-gray-700 hover:text-blue-600 font-medium py-2">Наши работы</a>
144
- <a href="#" class="text-gray-700 hover:text-blue-600 font-medium py-2">Поддержка</a>
145
- <a href="#" class="text-gray-700 hover:text-blue-600 font-medium py-2">Помощь</a>
146
- <a href="#" class="text-gray-700 hover:text-blue-600 font-medium py-2">Контакты</a>
147
  </div>
148
  </div>
149
  </nav>
150
 
151
  <!-- Mobile Menu (hidden by default) -->
152
  <div class="mobile-menu md:hidden">
153
- <a href="#" class="py-2 px-4 text-gray-700 hover:bg-gray-100">О нас</a>
154
- <a href="#" class="py-2 px-4 text-gray-700 hover:bg-gray-100">Услуги</a>
155
- <a href="#" class="py-2 px-4 text-gray-700 hover:bg-gray-100">Наши работы</a>
156
- <a href="#" class="py-2 px-4 text-gray-700 hover:bg-gray-100">Поддержка</a>
157
- <a href="#" class="py-2 px-4 text-gray-700 hover:bg-gray-100">Помощь</a>
158
- <a href="#" class="py-2 px-4 text-gray-700 hover:bg-gray-100">Контакты</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  </div>
160
 
161
- <main class="container mx-auto px-4 py-12 bg-blue-900 relative overflow-hidden">
162
- <div id="lasers"></div>
163
- <div class="text-center relative z-10">
164
- <h2 class="text-3xl font-bold text-white mb-4">Welcome to ConnectHub</h2>
165
- <p class="text-gray-300 max-w-[800px] mx-auto">This responsive header features a logo on the left and contact options on the right. On mobile devices, only the icons are shown to save space.</p>
166
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  </main>
168
 
169
- <script>
170
- // Create laser rays
171
- document.addEventListener('DOMContentLoaded', function() {
172
- const lasersContainer = document.getElementById('lasers');
173
- const rayCount = 8;
 
 
174
 
175
- for (let i = 0; i < rayCount; i++) {
176
- const ray = document.createElement('div');
177
- ray.className = 'laser-ray';
178
- ray.style.top = `${Math.random() * 100}%`;
179
- ray.style.left = '50%';
180
- ray.style.animationDelay = `${i * 0.5}s`;
181
- lasersContainer.appendChild(ray);
182
- }
183
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  // Create animated waves
186
  document.addEventListener('DOMContentLoaded', function() {
187
  const wavesContainer = document.getElementById('waves');
@@ -196,15 +457,57 @@
196
  });
197
  });
198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  // Toggle mobile menu
200
- document.querySelector('header button').addEventListener('click', function() {
201
  document.querySelector('.mobile-menu').classList.toggle('active');
202
  });
203
 
204
- // Contact icons functionality
205
- document.querySelectorAll('.contact-icon').forEach(icon => {
206
- icon.addEventListener('click', function() {
207
- console.log('Contact method clicked:', this.querySelector('span').textContent);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  });
209
  });
210
  </script>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ConnectHub - Modern Communication Platform</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
 
22
  padding: 1rem;
23
  border-top: 1px solid #e5e7eb;
24
  z-index: 10;
25
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
26
  }
27
  }
28
  .contact-icon {
 
37
  background-clip: text;
38
  color: transparent;
39
  }
40
+ .gradient-bg {
41
+ background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
 
 
 
 
 
 
 
 
42
  }
43
+ .floating {
44
+ animation: floating 6s ease-in-out infinite;
45
+ }
46
+ @keyframes floating {
47
+ 0% { transform: translateY(0px); }
48
+ 50% { transform: translateY(-15px); }
49
+ 100% { transform: translateY(0px); }
50
+ }
51
+ .pulse {
52
+ animation: pulse 2s infinite;
53
+ }
54
+ @keyframes pulse {
55
+ 0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
56
+ 70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
57
+ 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
58
+ }
59
+ .glow {
60
+ animation: glow 3s ease-in-out infinite alternate;
61
+ }
62
+ @keyframes glow {
63
+ from { filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5)); }
64
+ to { filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8)); }
65
  }
 
66
  .wave {
67
  position: absolute;
68
  bottom: 0;
 
73
  background-position: 0 bottom;
74
  transform-origin: center bottom;
75
  animation: wave 12s linear infinite;
76
+ opacity: 0.2;
77
  }
 
 
 
 
 
 
 
 
 
 
 
78
  @keyframes wave {
79
  0% { transform: translateX(0) translateZ(0) scaleY(1); }
80
  50% { transform: translateX(-25%) translateZ(0) scaleY(0.5); }
81
  100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
82
  }
83
+ .connect-dot {
84
+ position: absolute;
85
+ width: 8px;
86
+ height: 8px;
87
+ border-radius: 50%;
88
+ background-color: rgba(59, 130, 246, 0.6);
89
+ animation: connect 4s linear infinite;
90
+ }
91
+ @keyframes connect {
92
+ 0% { transform: scale(0.5); opacity: 0; }
93
+ 50% { transform: scale(1.2); opacity: 1; }
94
+ 100% { transform: scale(0.5); opacity: 0; }
95
+ }
96
+ .nav-link {
97
+ position: relative;
98
+ }
99
+ .nav-link::after {
100
+ content: '';
101
+ position: absolute;
102
+ width: 0;
103
+ height: 2px;
104
+ bottom: 0;
105
+ left: 0;
106
+ background-color: #3b82f6;
107
+ transition: width 0.3s ease;
108
+ }
109
+ .nav-link:hover::after {
110
+ width: 100%;
111
+ }
112
  </style>
113
  </head>
114
+ <body class="bg-gray-50 relative overflow-x-hidden">
115
+ <!-- Animated background elements -->
116
+ <div id="waves" class="absolute inset-0 -z-10"></div>
117
+ <div id="connect-dots" class="absolute inset-0 -z-10 overflow-hidden"></div>
118
+
119
+ <!-- Floating notification -->
120
+ <div class="fixed top-4 right-4 z-50 hidden" id="notification">
121
+ <div class="bg-white rounded-lg shadow-lg p-4 flex items-center space-x-3 animate-bounce">
122
+ <div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center">
123
+ <i class="fas fa-bell text-blue-600"></i>
124
+ </div>
125
+ <p class="text-sm font-medium text-gray-700">New message received!</p>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Header -->
130
+ <header class="bg-white shadow-sm sticky top-0 z-40">
131
+ <div class="container mx-auto px-4 py-3">
132
  <div class="flex items-center justify-between">
133
  <!-- Mobile menu button -->
134
+ <button class="md:hidden text-gray-700 focus:outline-none" aria-label="Toggle menu" id="menu-toggle">
135
  <i class="fas fa-bars text-xl"></i>
136
  </button>
137
+
138
  <!-- Logo and Company Name -->
139
  <div class="flex items-center space-x-3">
140
+ <div class="w-10 h-10 rounded-full bg-blue-500 flex items-center justify-center pulse">
141
  <span class="text-white font-bold text-xl">C</span>
142
  </div>
143
  <h1 class="text-2xl font-bold logo-text">ConnectHub</h1>
 
145
 
146
  <!-- Contact Icons -->
147
  <div class="flex items-center space-x-4 md:space-x-6">
148
+ <a href="tel:+1234567890" class="contact-icon group" title="Call us">
149
  <div class="flex items-center space-x-2">
150
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center group-hover:bg-blue-200 transition-all duration-300">
151
  <i class="fas fa-phone text-blue-600"></i>
152
  </div>
153
  <span class="hidden md:inline-block text-gray-700 font-medium">+1 (234) 567-890</span>
154
  </div>
155
  </a>
156
 
157
+ <a href="https://wa.me/1234567890" target="_blank" class="contact-icon group" title="WhatsApp">
158
  <div class="flex items-center space-x-2">
159
+ <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center group-hover:bg-green-200 transition-all duration-300">
160
  <i class="fab fa-whatsapp text-green-600"></i>
161
  </div>
162
  <span class="hidden md:inline-block text-gray-700 font-medium">WhatsApp</span>
163
  </div>
164
  </a>
165
 
166
+ <a href="https://t.me/username" target="_blank" class="contact-icon group" title="Telegram">
167
  <div class="flex items-center space-x-2">
168
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center group-hover:bg-blue-200 transition-all duration-300">
169
  <i class="fab fa-telegram text-blue-500"></i>
170
  </div>
171
  <span class="hidden md:inline-block text-gray-700 font-medium">Telegram</span>
172
  </div>
173
  </a>
 
174
  </div>
175
  </div>
176
  </div>
 
179
  <!-- Main Navigation Menu -->
180
  <nav class="bg-white shadow-sm">
181
  <div class="container mx-auto px-4">
182
+ <div class="hidden md:flex justify-center space-x-8 py-3">
183
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 font-medium py-2 px-1">О нас</a>
184
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 font-medium py-2 px-1">Услуги</a>
185
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 font-medium py-2 px-1">Наши работы</a>
186
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 font-medium py-2 px-1">Поддержка</a>
187
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 font-medium py-2 px-1">Помощь</a>
188
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 font-medium py-2 px-1">Контакты</a>
189
  </div>
190
  </div>
191
  </nav>
192
 
193
  <!-- Mobile Menu (hidden by default) -->
194
  <div class="mobile-menu md:hidden">
195
+ <a href="#" class="py-3 px-4 text-gray-700 hover:bg-gray-100 transition-colors duration-200 flex items-center space-x-2">
196
+ <i class="fas fa-info-circle text-blue-500 w-5"></i>
197
+ <span>О нас</span>
198
+ </a>
199
+ <a href="#" class="py-3 px-4 text-gray-700 hover:bg-gray-100 transition-colors duration-200 flex items-center space-x-2">
200
+ <i class="fas fa-concierge-bell text-blue-500 w-5"></i>
201
+ <span>Услуги</span>
202
+ </a>
203
+ <a href="#" class="py-3 px-4 text-gray-700 hover:bg-gray-100 transition-colors duration-200 flex items-center space-x-2">
204
+ <i class="fas fa-briefcase text-blue-500 w-5"></i>
205
+ <span>Наши работы</span>
206
+ </a>
207
+ <a href="#" class="py-3 px-4 text-gray-700 hover:bg-gray-100 transition-colors duration-200 flex items-center space-x-2">
208
+ <i class="fas fa-headset text-blue-500 w-5"></i>
209
+ <span>Поддержка</span>
210
+ </a>
211
+ <a href="#" class="py-3 px-4 text-gray-700 hover:bg-gray-100 transition-colors duration-200 flex items-center space-x-2">
212
+ <i class="fas fa-question-circle text-blue-500 w-5"></i>
213
+ <span>Помощь</span>
214
+ </a>
215
+ <a href="#" class="py-3 px-4 text-gray-700 hover:bg-gray-100 transition-colors duration-200 flex items-center space-x-2">
216
+ <i class="fas fa-envelope text-blue-500 w-5"></i>
217
+ <span>Контакты</span>
218
+ </a>
219
  </div>
220
 
221
+ <main class="w-full px-4 py-16 gradient-bg relative overflow-hidden">
222
+ <!-- Hero Section -->
223
+ <section class="container mx-auto text-center relative z-10">
224
+ <div class="max-w-4xl mx-auto">
225
+ <h1 class="text-4xl md:text-5xl font-bold text-white mb-6 leading-tight">Seamless Communication <span class="text-blue-300">Solutions</span></h1>
226
+ <p class="text-xl text-blue-100 mb-8">Connect with your audience through multiple channels with our integrated communication platform.</p>
227
+
228
+ <div class="flex flex-col sm:flex-row justify-center gap-4 mb-12">
229
+ <a href="#" class="bg-white text-blue-700 font-semibold px-6 py-3 rounded-lg hover:bg-blue-50 transition-all duration-300 flex items-center justify-center space-x-2">
230
+ <span>Get Started</span>
231
+ <i class="fas fa-arrow-right"></i>
232
+ </a>
233
+ <a href="#" class="bg-transparent border-2 border-white text-white font-semibold px-6 py-3 rounded-lg hover:bg-white hover:text-blue-700 transition-all duration-300 flex items-center justify-center space-x-2">
234
+ <i class="fas fa-play"></i>
235
+ <span>Watch Demo</span>
236
+ </a>
237
+ </div>
238
+ </div>
239
+
240
+ <div class="relative mt-16">
241
+ <div class="absolute -inset-4 bg-blue-500 rounded-2xl opacity-20 blur-lg"></div>
242
+ <div class="relative bg-white rounded-xl shadow-xl p-6 max-w-4xl mx-auto">
243
+ <div class="flex flex-wrap justify-center gap-6">
244
+ <div class="flex items-center space-x-3">
245
+ <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
246
+ <i class="fas fa-phone text-blue-600 text-xl"></i>
247
+ </div>
248
+ <div>
249
+ <p class="text-sm text-gray-500">Phone Support</p>
250
+ <p class="font-semibold">24/7 Available</p>
251
+ </div>
252
+ </div>
253
+ <div class="flex items-center space-x-3">
254
+ <div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center">
255
+ <i class="fab fa-whatsapp text-green-600 text-xl"></i>
256
+ </div>
257
+ <div>
258
+ <p class="text-sm text-gray-500">WhatsApp</p>
259
+ <p class="font-semibold">Instant Messaging</p>
260
+ </div>
261
+ </div>
262
+ <div class="flex items-center space-x-3">
263
+ <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
264
+ <i class="fab fa-telegram text-blue-500 text-xl"></i>
265
+ </div>
266
+ <div>
267
+ <p class="text-sm text-gray-500">Telegram</p>
268
+ <p class="font-semibold">Secure Chat</p>
269
+ </div>
270
+ </div>
271
+ <div class="flex items-center space-x-3">
272
+ <div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center">
273
+ <i class="fas fa-envelope text-purple-600 text-xl"></i>
274
+ </div>
275
+ <div>
276
+ <p class="text-sm text-gray-500">Email</p>
277
+ <p class="font-semibold">response@connecthub.com</p>
278
+ </div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </section>
284
  </main>
285
 
286
+ <!-- Features Section -->
287
+ <section class="py-16 bg-white">
288
+ <div class="container mx-auto px-4">
289
+ <div class="text-center mb-16">
290
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Why Choose ConnectHub?</h2>
291
+ <p class="text-gray-600 max-w-2xl mx-auto">Our platform offers seamless integration with multiple communication channels to ensure you never miss a connection.</p>
292
+ </div>
293
 
294
+ <div class="grid md:grid-cols-3 gap-8">
295
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition-all duration-300">
296
+ <div class="w-14 h-14 rounded-full bg-blue-100 flex items-center justify-center mb-4">
297
+ <i class="fas fa-bolt text-blue-600 text-xl"></i>
298
+ </div>
299
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Instant Connectivity</h3>
300
+ <p class="text-gray-600">Reach your audience instantly through multiple channels with a single platform integration.</p>
301
+ </div>
302
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition-all duration-300">
303
+ <div class="w-14 h-14 rounded-full bg-purple-100 flex items-center justify-center mb-4">
304
+ <i class="fas fa-shield-alt text-purple-600 text-xl"></i>
305
+ </div>
306
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Secure Communication</h3>
307
+ <p class="text-gray-600">End-to-end encryption and secure protocols to protect your conversations and data.</p>
308
+ </div>
309
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition-all duration-300">
310
+ <div class="w-14 h-14 rounded-full bg-green-100 flex items-center justify-center mb-4">
311
+ <i class="fas fa-chart-line text-green-600 text-xl"></i>
312
+ </div>
313
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Analytics Dashboard</h3>
314
+ <p class="text-gray-600">Track engagement and optimize your communication strategy with our comprehensive analytics.</p>
315
+ </div>
316
+ </div>
317
+ </div>
318
+ </section>
319
+
320
+ <!-- Testimonials -->
321
+ <section class="py-16 bg-gray-50">
322
+ <div class="container mx-auto px-4">
323
+ <div class="text-center mb-12">
324
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">What Our Clients Say</h2>
325
+ <p class="text-gray-600 max-w-2xl mx-auto">Hear from businesses that transformed their communication with ConnectHub.</p>
326
+ </div>
327
+
328
+ <div class="grid md:grid-cols-2 gap-8">
329
+ <div class="bg-white p-6 rounded-xl shadow-sm">
330
+ <div class="flex items-center mb-4">
331
+ <div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center text-white font-bold mr-4">JD</div>
332
+ <div>
333
+ <h4 class="font-semibold">John Doe</h4>
334
+ <p class="text-sm text-gray-500">CEO, TechSolutions</p>
335
+ </div>
336
+ </div>
337
+ <p class="text-gray-700">"ConnectHub has revolutionized how we communicate with our clients. The multi-channel approach ensures we're always available."</p>
338
+ <div class="flex mt-4">
339
+ <i class="fas fa-star text-yellow-400"></i>
340
+ <i class="fas fa-star text-yellow-400"></i>
341
+ <i class="fas fa-star text-yellow-400"></i>
342
+ <i class="fas fa-star text-yellow-400"></i>
343
+ <i class="fas fa-star text-yellow-400"></i>
344
+ </div>
345
+ </div>
346
+ <div class="bg-white p-6 rounded-xl shadow-sm">
347
+ <div class="flex items-center mb-4">
348
+ <div class="w-12 h-12 rounded-full bg-purple-500 flex items-center justify-center text-white font-bold mr-4">AS</div>
349
+ <div>
350
+ <h4 class="font-semibold">Anna Smith</h4>
351
+ <p class="text-sm text-gray-500">Marketing Director, BrandUp</p>
352
+ </div>
353
+ </div>
354
+ <p class="text-gray-700">"The analytics dashboard provides incredible insights into our customer engagement. We've improved our response times by 60%."</p>
355
+ <div class="flex mt-4">
356
+ <i class="fas fa-star text-yellow-400"></i>
357
+ <i class="fas fa-star text-yellow-400"></i>
358
+ <i class="fas fa-star text-yellow-400"></i>
359
+ <i class="fas fa-star text-yellow-400"></i>
360
+ <i class="fas fa-star-half-alt text-yellow-400"></i>
361
+ </div>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ </section>
366
+
367
+ <!-- CTA Section -->
368
+ <section class="py-16 gradient-bg relative overflow-hidden">
369
+ <div class="absolute inset-0 bg-gradient-to-r from-blue-900/50 to-purple-900/50"></div>
370
+ <div class="container mx-auto px-4 relative z-10">
371
+ <div class="max-w-3xl mx-auto text-center">
372
+ <h2 class="text-3xl font-bold text-white mb-4">Ready to Transform Your Communication?</h2>
373
+ <p class="text-blue-100 mb-8">Join thousands of businesses already using ConnectHub to enhance their customer engagement.</p>
374
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
375
+ <a href="#" class="bg-white text-blue-700 font-semibold px-8 py-3 rounded-lg hover:bg-blue-50 transition-all duration-300">Start Free Trial</a>
376
+ <a href="#" class="bg-transparent border-2 border-white text-white font-semibold px-8 py-3 rounded-lg hover:bg-white hover:text-blue-700 transition-all duration-300">Schedule Demo</a>
377
+ </div>
378
+ </div>
379
+ </div>
380
+ </section>
381
 
382
+ <!-- Footer -->
383
+ <footer class="bg-gray-900 text-white py-12">
384
+ <div class="container mx-auto px-4">
385
+ <div class="grid md:grid-cols-4 gap-8 mb-8">
386
+ <div>
387
+ <div class="flex items-center space-x-3 mb-4">
388
+ <div class="w-10 h-10 rounded-full bg-blue-500 flex items-center justify-center">
389
+ <span class="text-white font-bold text-xl">C</span>
390
+ </div>
391
+ <h3 class="text-xl font-bold logo-text">ConnectHub</h3>
392
+ </div>
393
+ <p class="text-gray-400 mb-4">The ultimate communication platform for modern businesses.</p>
394
+ <div class="flex space-x-4">
395
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
396
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
397
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
398
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
399
+ </div>
400
+ </div>
401
+ <div>
402
+ <h4 class="text-lg font-semibold mb-4">Quick Links</h4>
403
+ <ul class="space-y-2">
404
+ <li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
405
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
406
+ <li><a href="#" class="text-gray-400 hover:text-white">Services</a></li>
407
+ <li><a href="#" class="text-gray-400 hover:text-white">Portfolio</a></li>
408
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
409
+ </ul>
410
+ </div>
411
+ <div>
412
+ <h4 class="text-lg font-semibold mb-4">Services</h4>
413
+ <ul class="space-y-2">
414
+ <li><a href="#" class="text-gray-400 hover:text-white">Phone Support</a></li>
415
+ <li><a href="#" class="text-gray-400 hover:text-white">WhatsApp Integration</a></li>
416
+ <li><a href="#" class="text-gray-400 hover:text-white">Telegram Bots</a></li>
417
+ <li><a href="#" class="text-gray-400 hover:text-white">Email Management</a></li>
418
+ <li><a href="#" class="text-gray-400 hover:text-white">Analytics</a></li>
419
+ </ul>
420
+ </div>
421
+ <div>
422
+ <h4 class="text-lg font-semibold mb-4">Contact Us</h4>
423
+ <ul class="space-y-2">
424
+ <li class="flex items-start space-x-2">
425
+ <i class="fas fa-map-marker-alt mt-1 text-blue-400"></i>
426
+ <span class="text-gray-400">123 Business Ave, Suite 100, San Francisco, CA 94107</span>
427
+ </li>
428
+ <li class="flex items-center space-x-2">
429
+ <i class="fas fa-phone text-blue-400"></i>
430
+ <span class="text-gray-400">+1 (234) 567-890</span>
431
+ </li>
432
+ <li class="flex items-center space-x-2">
433
+ <i class="fas fa-envelope text-blue-400"></i>
434
+ <span class="text-gray-400">info@connecthub.com</span>
435
+ </li>
436
+ </ul>
437
+ </div>
438
+ </div>
439
+ <div class="border-t border-gray-800 pt-8 text-center text-gray-500">
440
+ <p>&copy; 2023 ConnectHub. All rights reserved.</p>
441
+ </div>
442
+ </div>
443
+ </footer>
444
+
445
+ <script>
446
  // Create animated waves
447
  document.addEventListener('DOMContentLoaded', function() {
448
  const wavesContainer = document.getElementById('waves');
 
457
  });
458
  });
459
 
460
+ // Create connecting dots animation
461
+ document.addEventListener('DOMContentLoaded', function() {
462
+ const dotsContainer = document.getElementById('connect-dots');
463
+ const dotCount = 20;
464
+
465
+ for (let i = 0; i < dotCount; i++) {
466
+ const dot = document.createElement('div');
467
+ dot.className = 'connect-dot';
468
+ dot.style.left = `${Math.random() * 100}%`;
469
+ dot.style.top = `${Math.random() * 100}%`;
470
+ dot.style.animationDelay = `${i * 0.2}s`;
471
+ dotsContainer.appendChild(dot);
472
+ }
473
+ });
474
+
475
  // Toggle mobile menu
476
+ document.getElementById('menu-toggle').addEventListener('click', function() {
477
  document.querySelector('.mobile-menu').classList.toggle('active');
478
  });
479
 
480
+ // Show notification after delay
481
+ setTimeout(() => {
482
+ document.getElementById('notification').classList.remove('hidden');
483
+ setTimeout(() => {
484
+ document.getElementById('notification').classList.add('hidden');
485
+ }, 5000);
486
+ }, 3000);
487
+
488
+ // Add hover effect to feature cards
489
+ document.querySelectorAll('.bg-gray-50').forEach(card => {
490
+ card.addEventListener('mouseenter', function() {
491
+ const icon = this.querySelector('i');
492
+ icon.classList.add('glow');
493
+ });
494
+ card.addEventListener('mouseleave', function() {
495
+ const icon = this.querySelector('i');
496
+ icon.classList.remove('glow');
497
+ });
498
+ });
499
+
500
+ // Smooth scrolling for anchor links
501
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
502
+ anchor.addEventListener('click', function(e) {
503
+ e.preventDefault();
504
+ const target = document.querySelector(this.getAttribute('href'));
505
+ if (target) {
506
+ window.scrollTo({
507
+ top: target.offsetTop - 100,
508
+ behavior: 'smooth'
509
+ });
510
+ }
511
  });
512
  });
513
  </script>