Spaces:
Running
Running
File size: 33,862 Bytes
9c2b35f |
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>recoveriX for Stroke Rehabilitation | Neurofeedback Luxembourg</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#0056b3',
secondary: '#003366',
accent: '#00a0e1',
lightblue: '#e6f2ff',
darkblue: '#002147'
},
fontFamily: {
sans: ['Roboto', 'sans-serif'],
},
}
}
}
</script>
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 51, 102, 0.9) 100%);
}
.btn-primary {
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.feature-icon {
width: 70px;
height: 70px;
background-color: rgba(0, 160, 225, 0.1);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.stats-item {
transition: all 0.3s ease;
}
.stats-item:hover {
transform: scale(1.05);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #00a0e1;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.form-input:focus {
box-shadow: 0 0 0 3px rgba(0, 160, 225, 0.3);
}
</style>
</head>
<body class="font-sans text-gray-800">
<!-- Header -->
<header class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<img src="https://neurofeedback-luxembourg.recoverix.com/wp-content/uploads/2023/03/recoverix-logo.png" alt="recoveriX Logo" class="h-12">
</div>
<nav class="hidden md:flex space-x-8">
<a href="#how-it-works" class="nav-link text-secondary font-medium">How It Works</a>
<a href="#benefits" class="nav-link text-secondary font-medium">Benefits</a>
<a href="#testimonials" class="nav-link text-secondary font-medium">Success Stories</a>
<a href="#faq" class="nav-link text-secondary font-medium">FAQ</a>
<a href="#contact" class="nav-link text-secondary font-medium">Contact</a>
</nav>
<div class="hidden md:block">
<a href="#contact" class="bg-accent text-white px-6 py-2 rounded-full font-medium btn-primary">Book Consultation</a>
</div>
<button class="md:hidden text-primary text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient text-white">
<div class="container mx-auto px-4 py-20 md:py-32">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Regain Movement After Stroke with recoveriX</h1>
<p class="text-xl mb-8">A revolutionary neurofeedback system that helps stroke survivors improve motor function through brain-computer interface technology.</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#contact" class="bg-white text-primary px-8 py-3 rounded-full font-bold text-center btn-primary">Start Your Recovery Today</a>
<a href="#how-it-works" class="border-2 border-white text-white px-8 py-3 rounded-full font-bold text-center btn-primary">Learn How It Works</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://neurofeedback-luxembourg.recoverix.com/wp-content/uploads/2023/03/recoverix-system.jpg" alt="recoveriX System" class="rounded-lg shadow-2xl max-w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Trust Indicators -->
<section class="bg-lightblue py-8">
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://neurofeedback-luxembourg.recoverix.com/wp-content/uploads/2023/03/partner-logo-1.png" alt="Partner Logo" class="h-12 opacity-70 hover:opacity-100 transition-opacity">
<img src="https://neurofeedback-luxembourg.recoverix.com/wp-content/uploads/2023/03/partner-logo-2.png" alt="Partner Logo" class="h-12 opacity-70 hover:opacity-100 transition-opacity">
<img src="https://neurofeedback-luxembourg.recoverix.com/wp-content/uploads/2023/03/partner-logo-3.png" alt="Partner Logo" class="h-12 opacity-70 hover:opacity-100 transition-opacity">
<img src="https://neurofeedback-luxembourg.recoverix.com/wp-content/uploads/2023/03/partner-logo-4.png" alt="Partner Logo" class="h-12 opacity-70 hover:opacity-100 transition-opacity">
</div>
</div>
</section>
<!-- How It Works -->
<section id="how-it-works" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-secondary mb-4">How recoveriX Works</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Our innovative system combines EEG neurofeedback with virtual reality to create new neural pathways for movement.</p>
</div>
<div class="grid md:grid-cols-3 gap-10">
<div class="flex flex-col items-center text-center">
<div class="feature-icon rounded-full flex items-center justify-center mb-6">
<i class="fas fa-brain text-accent text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-secondary mb-3">1. Brain Activity Measurement</h3>
<p class="text-gray-600">We measure your brain waves using a non-invasive EEG headset to identify areas needing rehabilitation.</p>
</div>
<div class="flex flex-col items-center text-center">
<div class="feature-icon rounded-full flex items-center justify-center mb-6">
<i class="fas fa-vr-cardboard text-accent text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-secondary mb-3">2. Virtual Reality Feedback</h3>
<p class="text-gray-600">You see your brain activity in real-time through immersive virtual reality, helping you learn to control it.</p>
</div>
<div class="flex flex-col items-center text-center">
<div class="feature-icon rounded-full flex items-center justify-center mb-6">
<i class="fas fa-hand-paper text-accent text-3xl"></i>
</div>
<h3 class="text-xl font-bold text-secondary mb-3">3. Functional Electrical Stimulation</h3>
<p class="text-gray-600">When your brain signals the correct movement, our system triggers electrical stimulation to activate your muscles.</p>
</div>
</div>
<div class="mt-16 text-center">
<a href="#" class="inline-block bg-accent text-white px-8 py-3 rounded-full font-bold btn-primary">
<i class="fas fa-play-circle mr-2"></i> Watch How It Works
</a>
</div>
</div>
</section>
<!-- Benefits -->
<section id="benefits" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-secondary mb-4">Benefits of recoveriX for Stroke</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Our system offers multiple advantages over traditional stroke rehabilitation methods.</p>
</div>
<div class="grid md:grid-cols-2 gap-8">
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-primary bg-opacity-10 p-3 rounded-full mr-4">
<i class="fas fa-chart-line text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-secondary">Proven Effectiveness</h3>
<p class="text-gray-600 mt-2">Clinical studies show significant improvement in motor function for stroke patients using our system.</p>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-primary bg-opacity-10 p-3 rounded-full mr-4">
<i class="fas fa-user-clock text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-secondary">Faster Recovery</h3>
<p class="text-gray-600 mt-2">Patients often see results quicker than with conventional therapy alone.</p>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-primary bg-opacity-10 p-3 rounded-full mr-4">
<i class="fas fa-heartbeat text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-secondary">Non-Invasive</h3>
<p class="text-gray-600 mt-2">No surgery or medications required - just your brain's natural ability to adapt.</p>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-start mb-4">
<div class="bg-primary bg-opacity-10 p-3 rounded-full mr-4">
<i class="fas fa-smile text-primary text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-secondary">Motivating Experience</h3>
<p class="text-gray-600 mt-2">The engaging VR environment makes therapy more enjoyable and motivating.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats -->
<section class="py-16 bg-primary text-white">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8 text-center">
<div class="stats-item p-6">
<div class="text-4xl font-bold mb-2">85%</div>
<div class="text-lg">of patients show measurable improvement</div>
</div>
<div class="stats-item p-6">
<div class="text-4xl font-bold mb-2">2x</div>
<div class="text-lg">faster recovery than traditional therapy</div>
</div>
<div class="stats-item p-6">
<div class="text-4xl font-bold mb-2">100+</div>
<div class="text-lg">patients treated successfully</div>
</div>
<div class="stats-item p-6">
<div class="text-4xl font-bold mb-2">30</div>
<div class="text-lg">minute sessions, 3-5 times per week</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-secondary mb-4">Success Stories</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Hear from stroke survivors who have regained movement with recoveriX.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="testimonial-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary bg-opacity-10 flex items-center justify-center mr-4">
<i class="fas fa-user text-primary"></i>
</div>
<div>
<h4 class="font-bold">Jean P.</h4>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"After my stroke, I couldn't move my right arm at all. After 6 weeks of recoveriX therapy, I can now lift a cup to drink. This technology is amazing!"</p>
</div>
<div class="testimonial-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary bg-opacity-10 flex items-center justify-center mr-4">
<i class="fas fa-user text-primary"></i>
</div>
<div>
<h4 class="font-bold">Marie L.</h4>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"Traditional therapy wasn't helping my foot drop. With recoveriX, I've regained enough control to walk without my brace. My therapist was shocked at my progress."</p>
</div>
<div class="testimonial-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary bg-opacity-10 flex items-center justify-center mr-4">
<i class="fas fa-user text-primary"></i>
</div>
<div>
<h4 class="font-bold">Thomas K.</h4>
<div class="text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic">"As a former pianist, losing hand function after my stroke was devastating. recoveriX helped me reconnect my brain to my fingers. I can play simple scales again!"</p>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-block border-2 border-primary text-primary px-8 py-3 rounded-full font-bold btn-primary">
<i class="fas fa-book-open mr-2"></i> Read More Success Stories
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-secondary text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Begin Your Recovery Journey?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Schedule a free consultation to see if recoveriX is right for you or your loved one.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#contact" class="bg-accent text-white px-8 py-3 rounded-full font-bold btn-primary">
<i class="fas fa-calendar-alt mr-2"></i> Book Your Consultation
</a>
<a href="tel:+352123456789" class="bg-white text-secondary px-8 py-3 rounded-full font-bold btn-primary">
<i class="fas fa-phone-alt mr-2"></i> Call Us Now
</a>
</div>
</div>
</section>
<!-- FAQ -->
<section id="faq" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-secondary mb-4">Frequently Asked Questions</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Get answers to common questions about recoveriX for stroke rehabilitation.</p>
</div>
<div class="max-w-3xl mx-auto">
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="flex justify-between items-center w-full text-left font-bold text-lg text-secondary">
<span>Who is a good candidate for recoveriX therapy?</span>
<i class="fas fa-plus text-accent"></i>
</button>
<div class="mt-3 text-gray-600 hidden">
recoveriX is suitable for stroke survivors who have motor impairments and are in the subacute or chronic phase of recovery. Ideal candidates have some residual motor function and the cognitive ability to follow instructions and engage with the therapy.
</div>
</div>
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="flex justify-between items-center w-full text-left font-bold text-lg text-secondary">
<span>How many sessions will I need?</span>
<i class="fas fa-plus text-accent"></i>
</button>
<div class="mt-3 text-gray-600 hidden">
Most patients benefit from 20-30 sessions, scheduled 3-5 times per week. The exact number depends on your individual condition and progress. Our therapists will create a personalized treatment plan during your initial evaluation.
</div>
</div>
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="flex justify-between items-center w-full text-left font-bold text-lg text-secondary">
<span>Is recoveriX covered by insurance?</span>
<i class="fas fa-plus text-accent"></i>
</button>
<div class="mt-3 text-gray-600 hidden">
Coverage varies by insurance provider and country. We work with many insurance companies and can help you verify your benefits. Some patients qualify for coverage under neurorehabilitation or physical therapy benefits.
</div>
</div>
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="flex justify-between items-center w-full text-left font-bold text-lg text-secondary">
<span>How does recoveriX compare to traditional therapy?</span>
<i class="fas fa-plus text-accent"></i>
</button>
<div class="mt-3 text-gray-600 hidden">
recoveriX complements traditional therapy by directly targeting the brain's ability to control movement. While traditional therapy focuses on strengthening existing pathways, recoveriX helps create new neural connections. Many patients use both approaches for optimal results.
</div>
</div>
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="flex justify-between items-center w-full text-left font-bold text-lg text-secondary">
<span>Are there any side effects?</span>
<i class="fas fa-plus text-accent"></i>
</button>
<div class="mt-3 text-gray-600 hidden">
recoveriX is non-invasive and generally very safe. Some patients may experience mild fatigue after sessions as their brain works to create new connections. The electrical stimulation may cause a tingling sensation but is not painful.
</div>
</div>
</div>
</div>
</section>
<!-- Contact Form -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto bg-lightblue rounded-xl overflow-hidden shadow-lg">
<div class="md:flex">
<div class="md:w-1/2 bg-primary text-white p-10">
<h2 class="text-3xl font-bold mb-6">Contact Us</h2>
<p class="mb-8">Ready to learn more about how recoveriX can help with stroke rehabilitation? Fill out the form or contact us directly.</p>
<div class="mb-6 flex items-start">
<div class="mr-4 text-accent">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
<div>
<h4 class="font-bold">Our Location</h4>
<p>123 Neurofeedback Street<br>Luxembourg City, Luxembourg</p>
</div>
</div>
<div class="mb-6 flex items-start">
<div class="mr-4 text-accent">
<i class="fas fa-phone-alt text-xl"></i>
</div>
<div>
<h4 class="font-bold">Call Us</h4>
<p>+352 123 456 789<br>Mon-Fri, 9am-5pm</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 text-accent">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<h4 class="font-bold">Email Us</h4>
<p>[email protected]</p>
</div>
</div>
</div>
<div class="md:w-1/2 p-10">
<form id="contactForm" class="space-y-4">
<div>
<label for="name" class="block text-gray-700 font-medium mb-2">Full Name*</label>
<input type="text" id="name" name="name" required class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent form-input">
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-2">Email*</label>
<input type="email" id="email" name="email" required class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent form-input">
</div>
<div>
<label for="phone" class="block text-gray-700 font-medium mb-2">Phone Number</label>
<input type="tel" id="phone" name="phone" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent form-input">
</div>
<div>
<label for="message" class="block text-gray-700 font-medium mb-2">How Can We Help?*</label>
<textarea id="message" name="message" rows="4" required class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent form-input"></textarea>
</div>
<button type="submit" class="w-full bg-accent text-white py-3 px-6 rounded-lg font-bold hover:bg-opacity-90 transition-all btn-primary">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-darkblue text-white py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8">
<div>
<img src="https://neurofeedback-luxembourg.recoverix.com/wp-content/uploads/2023/03/recoverix-logo-white.png" alt="recoveriX Logo" class="h-12 mb-4">
<p class="text-gray-300">Innovative neurofeedback therapy for stroke rehabilitation in Luxembourg.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white transition-colors">Home</a></li>
<li><a href="#how-it-works" class="text-gray-300 hover:text-white transition-colors">How It Works</a></li>
<li><a href="#benefits" class="text-gray-300 hover:text-white transition-colors">Benefits</a></li>
<li><a href="#testimonials" class="text-gray-300 hover:text-white transition-colors">Success Stories</a></li>
<li><a href="#faq" class="text-gray-300 hover:text-white transition-colors">FAQ</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Contact</h3>
<ul class="space-y-2 text-gray-300">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mr-2 mt-1 text-accent"></i>
<span>123 Neurofeedback Street, Luxembourg</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-2 text-accent"></i>
<span>+352 123 456 789</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-2 text-accent"></i>
<span>[email protected]</span>
</li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Follow Us</h3>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-primary bg-opacity-20 flex items-center justify-center text-white hover:bg-opacity-30 transition-all">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary bg-opacity-20 flex items-center justify-center text-white hover:bg-opacity-30 transition-all">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary bg-opacity-20 flex items-center justify-center text-white hover:bg-opacity-30 transition-all">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary bg-opacity-20 flex items-center justify-center text-white hover:bg-opacity-30 transition-all">
<i class="fab fa-youtube"></i>
</a>
</div>
<h3 class="text-lg font-bold mt-6 mb-4">Newsletter</h3>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-800 w-full">
<button type="submit" class="bg-accent px-4 py-2 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 recoveriX Luxembourg. All rights reserved. | <a href="#" class="hover:text-white transition-colors">Privacy Policy</a> | <a href="#" class="hover:text-white transition-colors">Terms of Service</a></p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('button.md\\:hidden').addEventListener('click', function() {
// This would toggle a mobile menu in a real implementation
alert('Mobile menu would open here in a full implementation');
});
// FAQ accordion
document.querySelectorAll('#faq button').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
if (content.classList.contains('hidden')) {
content.classList.remove('hidden');
icon.classList.remove('fa-plus');
icon.classList.add('fa-minus');
} else {
content.classList.add('hidden');
icon.classList.remove('fa-minus');
icon.classList.add('fa-plus');
}
});
});
// Form submission
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will contact you soon.');
this.reset();
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=neurohacker352/recoverix" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |