File size: 4,604 Bytes
d03c1cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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">
        <!-- Hero Section -->
        <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>

        <!-- Stats 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>

        <!-- Recent Changes Preview -->
        <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>

    <!-- Scripts -->
    <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>