origlena-ai-code-wizard / documentation.html
JARJISH's picture
```html
d078e7d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Origlena Documentation</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>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #0f172a;
color: #ffffff;
}
.glass-card {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}
.gradient-text {
background: linear-gradient(90deg, #818cf8, #c7d2fe);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body>
<div id="vanta-globe"></div>
<div class="min-h-screen flex flex-col">
<!-- Header -->
<header class="py-8 px-4 sm:px-6 lg:px-8">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="zap" class="text-purple-400 w-8 h-8"></i>
<h1 class="text-3xl font-bold gradient-text">Origlena Docs</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="index.html" class="text-purple-100 hover:text-white transition">Home</a>
<a href="#" class="text-purple-100 hover:text-white transition">API Reference</a>
<a href="#" class="text-purple-100 hover:text-white transition">Tutorials</a>
<a href="#" class="text-purple-100 hover:text-white transition">Examples</a>
</nav>
<button class="px-6 py-2 bg-purple-600 hover:bg-purple-700 rounded-full text-white font-medium transition-all transform hover:scale-105">
Get Started
</button>
</div>
</header>
<!-- Main Content -->
<main class="flex-1 py-12 px-4 sm:px-6 lg:px-8">
<div class="container mx-auto max-w-6xl">
<div class="glass-card p-8 md:p-12 mb-12">
<h1 class="text-4xl font-bold mb-6">Origlena Documentation</h1>
<p class="text-xl text-purple-100 mb-8">
Learn how to use Origlena to generate production-ready React applications powered by AI.
</p>
<div class="grid md:grid-cols-2 gap-8">
<!-- Getting Started -->
<div class="bg-white/5 p-6 rounded-xl">
<h2 class="text-2xl font-bold mb-4 flex items-center">
<i data-feather="rocket" class="mr-3 text-purple-400"></i>
Getting Started
</h2>
<ul class="space-y-3">
<li><a href="#" class="text-purple-100 hover:text-white transition flex items-center">
<i data-feather="arrow-right" class="mr-2 w-4 h-4"></i>
Installation Guide
</a></li>
<li><a href="#" class="text-purple-100 hover:text-white transition flex items-center">
<i data-feather="arrow-right" class="mr-2 w-4 h-4"></i>
Your First Generation
</a></li>
<li><a href="#" class="text-purple-100 hover:text-white transition flex items-center">
<i data-feather="arrow-right" class="mr-2 w-4 h-4"></i>
Project Structure
</a></li>
</ul>
</div>
<!-- API Reference -->
<div class="bg-white/5 p-6 rounded-xl">
<h2 class="text-2xl font-bold mb-4 flex items-center">
<i data-feather="code" class="mr-3 text-purple-400"></i>
API Reference
</h2>
<ul class="space-y-3">
<li><a href="#" class="text-purple-100 hover:text-white transition flex items-center">
<i data-feather="arrow-right" class="mr-2 w-4 h-4"></i>
Generation Endpoints
</a></li>
<li><a href="#" class="text-purple-100 hover:text-white transition flex items-center">
<i data-feather="arrow-right" class="mr-2 w-4 h-4"></i>
Authentication
</a></li>
<li><a href="#" class="text-purple-100 hover:text-white transition flex items-center">
<i data-feather="arrow-right" class="mr-2 w-4 h-4"></i>
Rate Limits
</a></li>
</ul>
</div>
</div>
</div>
<!-- Tutorials Section -->
<div class="glass-card p-8 md:p-12">
<h2 class="text-3xl font-bold mb-8">Tutorials</h2>
<div class="space-y-8">
<!-- Tutorial 1 -->
<div class="bg-white/5 p-6 rounded-xl">
<div class="flex items-start justify-between">
<div>
<h3 class="text-xl font-bold mb-2">Building a Todo App</h3>
<p class="text-purple-100 mb-4">
Learn how to generate a full-featured todo application with local storage, dark mode, and drag-and-drop functionality.
</p>
</div>
<i data-feather="chevron-right" class="text-purple-400 w-6 h-6"></i>
</div>
</div>
<!-- Tutorial 2 -->
<div class="bg-white/5 p-6 rounded-xl">
<div class="flex items-start justify-between">
<div>
<h3 class="text-xl font-bold mb-2">Creating a Weather Dashboard</h3>
<p class="text-purple-100 mb-4">
Generate a beautiful weather application that fetches live data from a weather API and displays it with interactive charts.
</p>
</div>
<i data-feather="chevron-right" class="text-purple-400 w-6 h-6"></i>
</div>
</div>
<!-- Tutorial 3 -->
<div class="bg-white/5 p-6 rounded-xl">
<div class="flex items-start justify-between">
<div>
<h3 class="text-xl font-bold mb-2">E-commerce Product Page</h3>
<p class="text-purple-100 mb-4">
Build a responsive e-commerce product page complete with image gallery, cart functionality, and checkout flow.
</p>
</div>
<i data-feather="chevron-right" class="text-purple-400 w-6 h-6"></i>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="py-12 px-4 sm:px-6 lg:px-8">
<div class="container mx-auto">
<div class="border-t border-white/10 pt-8 text-center">
<p class="text-purple-100">
© 2023 Origlena. All documentation is licensed under MIT.
</p>
</div>
</div>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<script>
// Initialize Vanta.js globe
VANTA.GLOBE({
el: "#vanta-globe",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x6d28d9,
backgroundColor: 0x0f172a
});
// Initialize Feather Icons
feather.replace();
</script>
</body>
</html>