Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Productivity App - Boost Your Efficiency</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></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=Poppins:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| .hero-bg { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| } | |
| .feature-card { | |
| transition: all 0.3s ease; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-card:hover { | |
| transform: scale(1.02); | |
| } | |
| .cta-section { | |
| background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%); | |
| } | |
| .animated-text { | |
| background: linear-gradient(to right, #667eea, #764ba2, #f093fb, #f5576c); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm fixed w-full z-10"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <i data-feather="target" class="h-8 w-8 text-indigo-600"></i> | |
| <span class="ml-2 text-xl font-bold text-gray-900">ProductivityPro</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#features" class="text-gray-600 hover:text-gray-900">Features</a> | |
| <a href="#testimonials" class="text-gray-600 hover:text-gray-900">Testimonials</a> | |
| <a href="#pricing" class="text-gray-600 hover:text-gray-900">Pricing</a> | |
| <a href="productivity.html" class="text-gray-600 hover:text-gray-900">Dashboard</a> | |
| </div> | |
| <div class="flex items-center"> | |
| <a href="productivity.html" class="bg-indigo-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-indigo-700 transition">Get Started</a> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="hero-bg pt-24 pb-20"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center"> | |
| <div> | |
| <h1 class="text-4xl md:text-5xl font-bold text-white leading-tight"> | |
| Transform Your <span class="animated-text">Productivity</span> Today | |
| </h1> | |
| <p class="mt-6 text-xl text-gray-100 max-w-2xl"> | |
| The all-in-one solution to manage tasks, track time, and boost your efficiency. Join thousands of professionals who have revolutionized their workflow. | |
| </p> | |
| <div class="mt-8 flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <a href="productivity.html" class="bg-white text-indigo-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition shadow-lg"> | |
| Start Free Trial | |
| </a> | |
| <a href="#features" class="border-2 border-white text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-white hover:text-indigo-600 transition"> | |
| Learn More | |
| </a> | |
| </div> | |
| </div> | |
| <div class="flex justify-center"> | |
| <img src="http://static.photos/technology/640x360/123" alt="Productivity Dashboard" class="rounded-xl shadow-2xl"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-20 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h2 class="text-3xl font-bold text-gray-900">Powerful Features</h2> | |
| <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto"> | |
| Everything you need to stay organized, focused, and productive. | |
| </p> | |
| </div> | |
| <div class="mt-16 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10"> | |
| <!-- Feature 1 --> | |
| <div class="feature-card bg-gray-50 rounded-xl p-8"> | |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center"> | |
| <i data-feather="clock" class="h-8 w-8 text-indigo-600"></i> | |
| </div> | |
| <h3 class="mt-6 text-xl font-semibold text-gray-900">Time Tracking</h3> | |
| <p class="mt-4 text-gray-600"> | |
| Monitor how you spend your time with our intuitive timer and detailed analytics. | |
| </p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="feature-card bg-gray-50 rounded-xl p-8"> | |
| <div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center"> | |
| <i data-feather="check-circle" class="h-8 w-8 text-green-600"></i> | |
| </div> | |
| <h3 class="mt-6 text-xl font-semibold text-gray-900">Task Management</h3> | |
| <p class="mt-4 text-gray-600"> | |
| Create, organize, and prioritize tasks with our powerful task management system. | |
| </p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="feature-card bg-gray-50 rounded-xl p-8"> | |
| <div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center"> | |
| <i data-feather="bar-chart-2" class="h-8 w-8 text-purple-600"></i> | |
| </div> | |
| <h3 class="mt-6 text-xl font-semibold text-gray-900">Analytics Dashboard</h3> | |
| <p class="mt-4 text-gray-600"> | |
| Gain insights into your productivity patterns with comprehensive reports. | |
| </p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="feature-card bg-gray-50 rounded-xl p-8"> | |
| <div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center"> | |
| <i data-feather="calendar" class="h-8 w-8 text-yellow-600"></i> | |
| </div> | |
| <h3 class="mt-6 text-xl font-semibold text-gray-900">Daily Planning</h3> | |
| <p class="mt-4 text-gray-600"> | |
| Plan your days effectively with our structured daily mission system. | |
| </p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="feature-card bg-gray-50 rounded-xl p-8"> | |
| <div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center"> | |
| <i data-feather="book-open" class="h-8 w-8 text-red-600"></i> | |
| </div> | |
| <h3 class="mt-6 text-xl font-semibold text-gray-900">Journal & Reflection</h3> | |
| <p class="mt-4 text-gray-600"> | |
| Reflect on your progress and capture important insights with our journal feature. | |
| </p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="feature-card bg-gray-50 rounded-xl p-8"> | |
| <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center"> | |
| <i data-feather="smartphone" class="h-8 w-8 text-blue-600"></i> | |
| </div> | |
| <h3 class="mt-6 text-xl font-semibold text-gray-900">Cross-Platform Sync</h3> | |
| <p class="mt-4 text-gray-600"> | |
| Access your data seamlessly across all your devices with real-time sync. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section id="testimonials" class="py-20 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h2 class="text-3xl font-bold text-gray-900">What Our Users Say</h2> | |
| <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto"> | |
| Join thousands of satisfied users who have transformed their productivity. | |
| </p> | |
| </div> | |
| <div class="mt-16 grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="testimonial-card bg-white rounded-xl p-8 shadow-md"> | |
| <div class="flex items-center"> | |
| <img src="http://static.photos/people/320x240/1" alt="User" class="w-12 h-12 rounded-full"> | |
| <div class="ml-4"> | |
| <h4 class="font-semibold text-gray-900">Sarah Johnson</h4> | |
| <p class="text-gray-600">Marketing Director</p> | |
| </div> | |
| </div> | |
| <p class="mt-6 text-gray-600 italic"> | |
| "This app has completely changed how I manage my workday. My productivity has increased by 40% since I started using it." | |
| </p> | |
| <div class="mt-6 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 bg-white rounded-xl p-8 shadow-md"> | |
| <div class="flex items-center"> | |
| <img src="http://static.photos/people/320x240/2" alt="User" class="w-12 h-12 rounded-full"> | |
| <div class="ml-4"> | |
| <h4 class="font-semibold text-gray-900">Michael Chen</h4> | |
| <p class="text-gray-600">Software Engineer</p> | |
| </div> | |
| </div> | |
| <p class="mt-6 text-gray-600 italic"> | |
| "The time tracking feature alone is worth the price. I now have clear insights into where my time goes and how to optimize it." | |
| </p> | |
| <div class="mt-6 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 3 --> | |
| <div class="testimonial-card bg-white rounded-xl p-8 shadow-md"> | |
| <div class="flex items-center"> | |
| <img src="http://static.photos/people/320x240/3" alt="User" class="w-12 h-12 rounded-full"> | |
| <div class="ml-4"> | |
| <h4 class="font-semibold text-gray-900">Emma Rodriguez</h4> | |
| <p class="text-gray-600">Freelance Designer</p> | |
| </div> | |
| </div> | |
| <p class="mt-6 text-gray-600 italic"> | |
| "As a freelancer, managing multiple projects was chaotic. This app helped me organize everything and bill clients accurately." | |
| </p> | |
| <div class="mt-6 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> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="cta-section py-20"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-white"> | |
| Ready to Boost Your Productivity? | |
| </h2> | |
| <p class="mt-4 text-xl text-gray-100 max-w-3xl mx-auto"> | |
| Join thousands of professionals who have transformed their workflow with ProductivityPro. | |
| </p> | |
| <div class="mt-10"> | |
| <a href="productivity.html" class="bg-white text-indigo-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition shadow-lg inline-block"> | |
| Start Your Free Trial | |
| </a> | |
| <p class="mt-4 text-gray-200">No credit card required. 14-day free trial.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center"> | |
| <i data-feather="target" class="h-8 w-8 text-indigo-400"></i> | |
| <span class="ml-2 text-xl font-bold">ProductivityPro</span> | |
| </div> | |
| <p class="mt-4 text-gray-400"> | |
| The ultimate productivity tool for professionals who want to achieve more. | |
| </p> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold">Product</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#features" class="text-gray-400 hover:text-white">Features</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Integrations</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold">Resources</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Support</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold">Company</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">About</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-400"> | |
| <p>© 2023 ProductivityPro. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Feather icons initialization | |
| feather.replace(); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> |