|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Feature Catalog - 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> |
|
|
</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"> |
|
|
<div class="text-center mb-12"> |
|
|
<h1 class="text-4xl md:text-6xl font-bold text-white mb-4"> |
|
|
Feature Catalog |
|
|
</h1> |
|
|
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> |
|
|
Comprehensive overview of all major features implemented in JCode Visual Builder |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-6"> |
|
|
|
|
|
<div class="feature-card bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
|
|
<div class="flex items-center gap-3 mb-4"> |
|
|
<i data-feather="code" class="text-primary"></i> |
|
|
<h2 class="text-xl font-semibold text-white">Core Development</h2> |
|
|
</div> |
|
|
<ul class="space-y-3 text-gray-300"> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Visual Debugger |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Variable Browser |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Expression Builder |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="feature-card bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
|
|
<div class="flex items-center gap-3 mb-4"> |
|
|
<i data-feather="folder" class="text-secondary"></i> |
|
|
<h2 class="text-xl font-semibold text-white">File System</h2> |
|
|
</div> |
|
|
<ul class="space-y-3 text-gray-300"> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Hierarchical File Browser |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Text Editor |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Drag & Drop File Management |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="feature-card bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
|
|
<div class="flex items-center gap-3 mb-4"> |
|
|
<i data-feather="layout" class="text-purple-400"></i> |
|
|
<h2 class="text-xl font-semibold text-white">UI/UX Enhancements</h2> |
|
|
</div> |
|
|
<ul class="space-y-3 text-gray-300"> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Dark Theme |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Tabbed Interface |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Color-coded Commands |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="feature-card bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
|
|
<div class="flex items-center gap-3 mb-4"> |
|
|
<i data-feather="tool" class="text-orange-400"></i> |
|
|
<h2 class="text-xl font-semibold text-white">Utility Blocks</h2> |
|
|
</div> |
|
|
<ul class="space-y-3 text-gray-300"> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
String Operations |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Array Manipulation |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Math Functions |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="feature-card bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
|
|
<div class="flex items-center gap-3 mb-4"> |
|
|
<i data-feather="zap" class="text-yellow-400"></i> |
|
|
<h2 class="text-xl font-semibold text-white">Advanced Features</h2> |
|
|
</div> |
|
|
<ul class="space-y-3 text-gray-300"> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Function Call Graphs |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Comment Blocks |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Modular Programming |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="feature-card bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
|
|
<div class="flex items-center gap-3 mb-4"> |
|
|
<i data-feather="shield" class="text-red-400"></i> |
|
|
<h2 class="text-xl font-semibold text-white">Bug Fixes</h2> |
|
|
</div> |
|
|
<ul class="space-y-3 text-gray-300"> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Scope Management |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Variable Handling |
|
|
</li> |
|
|
<li class="flex items-center gap-2"> |
|
|
<i data-feather="check" class="text-green-400 w-4 h-4"></i> |
|
|
Expression Evaluation |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
</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> |
|
|
</body> |
|
|
</html> |