Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Documentation - CodeCanvas Wizardry</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="min-h-screen bg-gray-50"> | |
| <header class="bg-white bg-opacity-80 backdrop-blur-md shadow-sm sticky top-0 z-10"> | |
| <div class="container mx-auto px-4 py-4 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <i data-feather="code" class="text-indigo-500 mr-2"></i> | |
| <h1 class="text-2xl font-bold text-gray-800">CodeCanvas Wizardry</h1> | |
| </div> | |
| <nav> | |
| <ul class="flex space-x-6"> | |
| <li><a href="index.html" class="text-gray-600 hover:text-indigo-500 transition">Home</a></li> | |
| <li><a href="docs.html" class="text-indigo-500 font-medium">Docs</a></li> | |
| <li><a href="examples.html" class="text-gray-600 hover:text-indigo-500 transition">Examples</a></li> | |
| <li><a href="faq.html" class="text-gray-600 hover:text-indigo-500 transition">FAQ</a></li> | |
| <li><a href="contact.html" class="text-gray-600 hover:text-indigo-500 transition">Contact</a></li> | |
| </ul> | |
| </nav> | |
| </div> | |
| </header> | |
| <main class="container mx-auto px-4 py-12"> | |
| <h1 class="text-4xl font-bold mb-8">Documentation</h1> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h2 class="text-2xl font-semibold mb-4">Getting Started</h2> | |
| <p class="text-gray-600 mb-4">Learn how to set up and run your first program with CodeCanvas Wizardry.</p> | |
| <a href="#" class="text-indigo-500 hover:text-indigo-600 font-medium">Read Guide β</a> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h2 class="text-2xl font-semibold mb-4">API Reference</h2> | |
| <p class="text-gray-600 mb-4">Complete documentation for all available functions and methods.</p> | |
| <a href="#" class="text-indigo-500 hover:text-indigo-600 font-medium">View API β</a> | |
| </div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h2 class="text-2xl font-semibold mb-4">Tutorials</h2> | |
| <p class="text-gray-600 mb-4">Step-by-step tutorials for common use cases and scenarios.</p> | |
| <a href="#" class="text-indigo-500 hover:text-indigo-600 font-medium">Browse Tutorials β</a> | |
| </div> | |
| </div> | |
| </main> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |