File size: 32,665 Bytes
f3178a3 |
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 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Complete Care - Women's Wellbeing & Lifestyle Companion</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');
:root {
--primary: #FF6B8B;
--secondary: #6B8CFF;
--accent: #FFC96B;
--light: #FFF5F7;
--dark: #333333;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--dark);
background-color: #fefefe;
}
.heading-font {
font-family: 'Playfair Display', serif;
}
.hero-gradient {
background: linear-gradient(135deg, #FF6B8B 0%, #6B8CFF 100%);
}
.category-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.testimonial-card {
background: linear-gradient(to bottom right, white, #FFF5F7);
}
.nav-link:hover {
color: var(--primary);
}
.btn-primary {
background-color: var(--primary);
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #e05d7a;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(255, 107, 139, 0.3);
}
.btn-secondary {
background-color: var(--secondary);
transition: all 0.3s ease;
}
.btn-secondary:hover {
background-color: #5a7ae8;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(107, 140, 255, 0.3);
}
.feature-icon {
color: var(--primary);
font-size: 2.5rem;
margin-bottom: 1rem;
}
.article-card:hover .article-title {
color: var(--primary);
}
.newsletter-input:focus {
outline: none;
box-shadow: 0 0 0 2px var(--primary);
}
.scroll-hidden {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scroll-hidden::-webkit-scrollbar {
display: none;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.8s ease forwards;
}
</style>
</head>
<body>
<!-- Header/Navigation -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<a href="#" class="flex items-center">
<i class="fas fa-heart text-3xl mr-2" style="color: var(--primary);"></i>
<span class="heading-font text-2xl font-bold text-gray-800">Complete Care</span>
</a>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-pink-500 transition">Home</a>
<a href="#categories" class="nav-link text-gray-700 hover:text-pink-500 transition">Categories</a>
<a href="#features" class="nav-link text-gray-700 hover:text-pink-500 transition">Features</a>
<a href="#articles" class="nav-link text-gray-700 hover:text-pink-500 transition">Articles</a>
<a href="#community" class="nav-link text-gray-700 hover:text-pink-500 transition">Community</a>
</nav>
<div class="flex items-center space-x-4">
<button class="md:hidden text-gray-700">
<i class="fas fa-bars text-xl"></i>
</button>
<button class="hidden md:block btn-primary text-white px-4 py-2 rounded-full font-medium">
Sign In
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero-gradient text-white py-16 md:py-24">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 animate-fade-in" style="animation-delay: 0.2s;">
<h1 class="heading-font text-4xl md:text-5xl lg:text-6xl font-bold mb-6">
Your Everyday Companion for Wellbeing & Lifestyle
</h1>
<p class="text-lg md:text-xl mb-8 opacity-90">
Empowering women with trusted information, inspiration, and smart tools for taking care of themselves and their homes.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="btn-primary text-white px-6 py-3 rounded-full font-medium text-lg">
Explore Categories
</button>
<button class="bg-white text-pink-600 px-6 py-3 rounded-full font-medium text-lg border border-white hover:bg-transparent hover:text-white transition">
Join Community
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center animate-fade-in" style="animation-delay: 0.4s;">
<img src="https://images.unsplash.com/photo-1498758536662-35b82cd15e29?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Woman enjoying self-care"
class="rounded-xl shadow-2xl w-full max-w-md">
</div>
</div>
</section>
<!-- Categories Section -->
<section id="categories" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="heading-font text-3xl md:text-4xl font-bold mb-4">Explore Our Key Categories</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Comprehensive resources covering all aspects of women's wellbeing and lifestyle
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Category 1 -->
<div class="category-card bg-white rounded-xl p-6 shadow-md transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-pink-100 flex items-center justify-center mb-4">
<i class="fas fa-spa text-2xl text-pink-600"></i>
</div>
<h3 class="text-xl font-bold mb-3">Skin Care</h3>
<p class="text-gray-600 mb-4">
In-depth comparisons of skincare products, expert advice, and guides tailored to your skin type.
</p>
<a href="#" class="text-pink-600 font-medium flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Category 2 -->
<div class="category-card bg-white rounded-xl p-6 shadow-md transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-4">
<i class="fas fa-cut text-2xl text-blue-600"></i>
</div>
<h3 class="text-xl font-bold mb-3">Hair Care</h3>
<p class="text-gray-600 mb-4">
Explore tips, routines, and product reviews for healthy, beautiful hair at every stage.
</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Category 3 -->
<div class="category-card bg-white rounded-xl p-6 shadow-md transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-purple-100 flex items-center justify-center mb-4">
<i class="fas fa-brain text-2xl text-purple-600"></i>
</div>
<h3 class="text-xl font-bold mb-3">Mental & Physical Health</h3>
<p class="text-gray-600 mb-4">
Guidance on maintaining emotional balance, stress relief, and daily wellness routines.
</p>
<a href="#" class="text-purple-600 font-medium flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Category 4 -->
<div class="category-card bg-white rounded-xl p-6 shadow-md transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-green-100 flex items-center justify-center mb-4">
<i class="fas fa-running text-2xl text-green-600"></i>
</div>
<h3 class="text-xl font-bold mb-3">Fitness & Yoga</h3>
<p class="text-gray-600 mb-4">
Home-friendly workouts, beginner yoga poses, and fitness gear suggestions for all levels.
</p>
<a href="#" class="text-green-600 font-medium flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Category 5 -->
<div class="category-card bg-white rounded-xl p-6 shadow-md transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-yellow-100 flex items-center justify-center mb-4">
<i class="fas fa-tshirt text-2xl text-yellow-600"></i>
</div>
<h3 class="text-xl font-bold mb-3">Fashion & Style</h3>
<p class="text-gray-600 mb-4">
Curated fashion tips for every occasion, seasonal styling advice, and outfit inspiration.
</p>
<a href="#" class="text-yellow-600 font-medium flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Category 6 -->
<div class="category-card bg-white rounded-xl p-6 shadow-md transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-indigo-100 flex items-center justify-center mb-4">
<i class="fas fa-home text-2xl text-indigo-600"></i>
</div>
<h3 class="text-xl font-bold mb-3">Home Décor & Organization</h3>
<p class="text-gray-600 mb-4">
Creative ideas for decorating your home and organizing spaces to create a relaxing atmosphere.
</p>
<a href="#" class="text-indigo-600 font-medium flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="heading-font text-3xl md:text-4xl font-bold mb-4">Why Choose Complete Care?</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Our platform offers unique features designed to make your wellbeing journey easier and more effective
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="text-center p-6 rounded-xl bg-gray-50">
<div class="feature-icon">
<i class="fas fa-balance-scale"></i>
</div>
<h3 class="text-xl font-bold mb-3">Product Comparisons</h3>
<p class="text-gray-600">
Side-by-side comparisons of prices, features, and user ratings to help you make informed decisions.
</p>
</div>
<!-- Feature 2 -->
<div class="text-center p-6 rounded-xl bg-gray-50">
<div class="feature-icon">
<i class="fas fa-user-md"></i>
</div>
<h3 class="text-xl font-bold mb-3">Expert Advice</h3>
<p class="text-gray-600">
Tips and insights from professionals in beauty, health, home care, and interior design.
</p>
</div>
<!-- Feature 3 -->
<div class="text-center p-6 rounded-xl bg-gray-50">
<div class="feature-icon">
<i class="fas fa-comments"></i>
</div>
<h3 class="text-xl font-bold mb-3">Community Reviews</h3>
<p class="text-gray-600">
Honest feedback and recommendations from real users who've tried products and routines.
</p>
</div>
<!-- Feature 4 -->
<div class="text-center p-6 rounded-xl bg-gray-50">
<div class="feature-icon">
<i class="fas fa-share-alt"></i>
</div>
<h3 class="text-xl font-bold mb-3">Social Integration</h3>
<p class="text-gray-600">
Easily share articles and ideas through your favorite platforms and stay connected.
</p>
</div>
</div>
</div>
</section>
<!-- Popular Articles Section -->
<section id="articles" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center mb-8">
<h2 class="heading-font text-3xl font-bold">Popular Articles</h2>
<a href="#" class="text-pink-600 font-medium flex items-center">
View All <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Article 1 -->
<div class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300 hover:shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1587&q=80"
alt="Skincare products"
class="w-full h-full object-cover transition duration-500 hover:scale-105">
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>Skin Care</span>
<span class="mx-2">•</span>
<span>5 min read</span>
</div>
<h3 class="article-title text-xl font-bold mb-3 transition duration-300">
The Ultimate Guide to Choosing the Right Moisturizer for Your Skin Type
</h3>
<p class="text-gray-600 mb-4">
Learn how to select the perfect moisturizer based on your skin's unique needs and concerns.
</p>
<a href="#" class="text-pink-600 font-medium flex items-center">
Read Article <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Article 2 -->
<div class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300 hover:shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Yoga pose"
class="w-full h-full object-cover transition duration-500 hover:scale-105">
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>Fitness & Yoga</span>
<span class="mx-2">•</span>
<span>8 min read</span>
</div>
<h3 class="article-title text-xl font-bold mb-3 transition duration-300">
10 Yoga Poses to Relieve Stress and Improve Sleep Quality
</h3>
<p class="text-gray-600 mb-4">
Simple yet effective yoga sequences you can do before bed to unwind and prepare for restful sleep.
</p>
<a href="#" class="text-pink-600 font-medium flex items-center">
Read Article <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Article 3 -->
<div class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300 hover:shadow-lg">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1556909212-d5b604d0c90d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Home organization"
class="w-full h-full object-cover transition duration-500 hover:scale-105">
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>Home Organization</span>
<span class="mx-2">•</span>
<span>6 min read</span>
</div>
<h3 class="article-title text-xl font-bold mb-3 transition duration-300">
Minimalist Home Organization: 5 Smart Hacks for Small Spaces
</h3>
<p class="text-gray-600 mb-4">
Transform your living space with these clever organization solutions that maximize every inch.
</p>
<a href="#" class="text-pink-600 font-medium flex items-center">
Read Article <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="community" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="heading-font text-3xl md:text-4xl font-bold mb-4">What Our Community Says</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Hear from women who have transformed their wellbeing and lifestyle with Complete Care
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg"
alt="Sarah Johnson"
class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">Marketing Executive</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"Complete Care helped me find the perfect skincare routine for my sensitive skin. The product comparisons saved me so much time and money!"
</p>
<div class="flex 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>
<!-- Testimonial 2 -->
<div class="testimonial-card p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg"
alt="Priya Patel"
class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Priya Patel</h4>
<p class="text-gray-500 text-sm">Yoga Instructor</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"The fitness section has been a game-changer for my home workouts. I love the variety of routines and the expert advice on proper form."
</p>
<div class="flex 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>
<!-- Testimonial 3 -->
<div class="testimonial-card p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg"
alt="Maria Gonzalez"
class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Maria Gonzalez</h4>
<p class="text-gray-500 text-sm">Interior Designer</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"As a busy mom, the home organization tips have been invaluable. I've completely transformed my small apartment thanks to Complete Care!"
</p>
<div class="flex 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>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-16 bg-gradient-to-r from-pink-500 via-purple-500 to-blue-500 text-white">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h2 class="heading-font text-3xl md:text-4xl font-bold mb-4">Join Our Community</h2>
<p class="text-lg mb-8 opacity-90">
Subscribe to our newsletter for weekly wellbeing tips, exclusive content, and special offers
</p>
<div class="flex flex-col sm:flex-row gap-4 max-w-xl mx-auto">
<input type="email"
placeholder="Your email address"
class="newsletter-input flex-grow px-4 py-3 rounded-full text-gray-800 focus:outline-none">
<button class="btn-secondary text-white px-6 py-3 rounded-full font-medium whitespace-nowrap">
Subscribe Now
</button>
</div>
<p class="text-sm mt-4 opacity-80">
We respect your privacy. Unsubscribe at any time.
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<!-- Column 1 -->
<div>
<a href="#" class="flex items-center mb-6">
<i class="fas fa-heart text-3xl mr-2" style="color: var(--primary);"></i>
<span class="heading-font text-2xl font-bold">Complete Care</span>
</a>
<p class="text-gray-400 mb-4">
Your everyday companion for women's wellbeing and lifestyle.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-pinterest-p"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<!-- Column 2 -->
<div>
<h3 class="text-lg font-bold mb-4">Categories</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Skin Care</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Hair Care</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Mental Health</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Fitness & Yoga</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Fashion & Style</a></li>
</ul>
</div>
<!-- Column 3 -->
<div>
<h3 class="text-lg font-bold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Product Reviews</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Expert Advice</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community Forum</a></li>
</ul>
</div>
<!-- Column 4 -->
<div>
<h3 class="text-lg font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-800 text-center text-gray-400">
<p>© 2023 Complete Care. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="fixed bottom-6 right-6 bg-pink-600 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center transition-opacity duration-300 opacity-0 invisible">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Back to Top Button
const backToTopButton = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Mobile Menu Toggle (would need implementation)
// const mobileMenuButton = document.querySelector('.md\\:hidden');
// const navMenu = document.querySelector('nav');
// mobileMenuButton.addEventListener('click', () => {
// navMenu.classList.toggle('hidden');
// });
// Animation on scroll
const animateOnScroll = () => {
const elements = document.querySelectorAll('.animate-fade-in');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.2;
if (elementPosition < screenPosition) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
window.addEventListener('scroll', animateOnScroll);
window.addEventListener('load', animateOnScroll);
</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=mmmm25/mona" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |