| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>JCode Evolution Tracker</title> |
| | <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| | <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: '#667eea', |
| | secondary: '#764ba2', |
| | } |
| | } |
| | } |
| | } |
| | </script> |
| | </head> |
| | <body class="min-h-screen bg-gradient-to-br from-gray-900 via-purple-900 to-violet-900"> |
| | <custom-navbar></custom-navbar> |
| | |
| | <main class="container mx-auto px-4 py-8"> |
| | |
| | <section class="text-center mb-16"> |
| | <h1 class="text-5xl md:text-7xl font-bold text-white mb-6"> |
| | JCode Evolution Tracker |
| | </h1> |
| | <p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-3xl mx-auto"> |
| | Visualize the journey of JCode Visual Builder development through interactive timelines and detailed change logs |
| | </p> |
| | <div class="flex flex-col sm:flex-row gap-4 justify-center"> |
| | <a href="/timeline.html" class="bg-primary hover:bg-primary/90 text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105"> |
| | <i data-feather="clock" class="inline mr-2"></i> |
| | Explore Timeline |
| | </a> |
| | <a href="/features.html" class="bg-secondary hover:bg-secondary/90 text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105"> |
| | <i data-feather="star" class="inline mr-2"></i> |
| | View Features |
| | </a> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-16"> |
| | <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| | <div class="text-3xl font-bold text-white mb-2">50+</div> |
| | <div class="text-gray-300">Change Log Entries</div> |
| | </div> |
| | <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| | <div class="text-3xl font-bold text-white mb-2">25+</div> |
| | <div class="text-gray-300">Major Features</div> |
| | </div> |
| | <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| | <div class="text-3xl font-bold text-white mb-2">15+</div> |
| | <div class="text-gray-300">Bug Fixes</div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="mb-16"> |
| | <h2 class="text-3xl font-bold text-white mb-8 text-center">Recent Milestones</h2> |
| | <div class="grid grid-cols-1 lg:grid-cols-2 gap-6"> |
| | <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| | <h3 class="text-xl font-semibold text-white mb-4"> |
| | <i data-feather="code" class="inline mr-2"></i> |
| | Variable Browser & Scope |
| | </h3> |
| | <p class="text-gray-300 mb-4">Real-time variable tracking with scope awareness and click-to-insert functionality</p> |
| | <div class="text-sm text-primary">2025-10-26</div> |
| | </div> |
| | <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| | <h3 class="text-xl font-semibold text-white mb-4"> |
| | <i data-feather="file" class="inline mr-2"></i> |
| | File System & Text Editor |
| | </h3> |
| | <p class="text-gray-300 mb-4">Hierarchical file management with full-featured text editing</p> |
| | <div class="text-sm text-secondary">2025-10-25</div> |
| | </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> |