| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>LinearLite - Modern Project Management</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 50: '#f0f9ff', |
| 100: '#e0f2fe', |
| 500: '#3b82f6', |
| 600: '#2563eb', |
| 700: '#1d4ed8', |
| }, |
| secondary: { |
| 50: '#f5f3ff', |
| 100: '#ede9fe', |
| 500: '#8b5cf6', |
| 600: '#7c3aed', |
| 700: '#6d28d9', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-50 text-gray-900"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> |
| <section class="flex flex-col md:flex-row items-center justify-between gap-12 mb-20"> |
| <div class="md:w-1/2 space-y-6"> |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight"> |
| The modern way to manage projects |
| </h1> |
| <p class="text-lg text-gray-600 max-w-lg"> |
| LinearLite helps you plan, track, and collaborate on projects with your team. Built for speed and simplicity. |
| </p> |
| <div class="flex flex-col sm:flex-row gap-3"> |
| <a href="/signup" class="bg-primary-500 hover:bg-primary-600 text-white font-medium rounded-lg px-6 py-3 text-center transition"> |
| Get Started |
| </a> |
| <a href="/demo" class="border border-gray-300 hover:bg-gray-50 font-medium rounded-lg px-6 py-3 text-center transition"> |
| Watch Demo |
| </a> |
| </div> |
| </div> |
| <div class="md:w-1/2"> |
| <img src="http://static.photos/technology/1200x630/42" alt="Dashboard preview" class="rounded-xl shadow-xl border border-gray-200"> |
| </div> |
| </section> |
|
|
| <section class="py-12"> |
| <div class="text-center mb-12"> |
| <h2 class="text-3xl font-bold mb-4">Trusted by teams worldwide</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Join thousands of productive teams who manage their work with LinearLite</p> |
| </div> |
| <div class="flex flex-wrap justify-center gap-8 md:gap-16"> |
| <i data-feather="github" class="w-12 h-12 text-gray-400"></i> |
| <i data-feather="figma" class="w-12 h-12 text-gray-400"></i> |
| <i data-feather="slack" class="w-12 h-12 text-gray-400"></i> |
| <i data-feather="trello" class="w-12 h-12 text-gray-400"></i> |
| <i data-feather="microsoft" class="w-12 h-12 text-gray-400"></i> |
| </div> |
| </section> |
|
|
| <section class="py-12 grid md:grid-cols-3 gap-8"> |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100"> |
| <div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center mb-4"> |
| <i data-feather="zap" class="text-primary-500 w-6 h-6"></i> |
| </div> |
| <h3 class="font-bold text-xl mb-2">Lightning fast</h3> |
| <p class="text-gray-600">Built for speed with keyboard shortcuts and minimal UI friction.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100"> |
| <div class="w-12 h-12 bg-secondary-100 rounded-lg flex items-center justify-center mb-4"> |
| <i data-feather="users" class="text-secondary-500 w-6 h-6"></i> |
| </div> |
| <h3 class="font-bold text-xl mb-2">Team collaboration</h3> |
| <p class="text-gray-600">Real-time updates and comments keep everyone in sync.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100"> |
| <div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center mb-4"> |
| <i data-feather="code" class="text-primary-500 w-6 h-6"></i> |
| </div> |
| <h3 class="font-bold text-xl mb-2">Developer friendly</h3> |
| <p class="text-gray-600">API first design with webhooks and integrations.</p> |
| </div> |
| </section> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script> |
| feather.replace(); |
| </script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |