Spaces:
Running
Running
| <html lang="en" class="dark"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Workspaces | CodeForge-AI</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> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| darkMode: 'class', | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#ef4444', | |
| secondary: '#6b7280' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-900 text-white min-h-screen overflow-x-hidden"> | |
| <!-- Navigation --> | |
| <nav class="bg-gray-800 border-b border-red-500/20 sticky top-0 z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between items-center h-16"> | |
| <div class="flex items-center space-x-4"> | |
| <div class="flex items-center space-x-2"> | |
| <a href="index.html" class="flex items-center space-x-2"> | |
| <div class="w-8 h-8 bg-red-500 rounded-lg flex items-center justify-center"> | |
| <i data-feather="code" class="w-4 h-4"></i> | |
| </div> | |
| <span class="text-xl font-bold text-white">CodeForge-AI</span> | |
| </a> | |
| </div> | |
| <div class="hidden md:flex space-x-6"> | |
| <a href="workspaces.html" class="text-red-400 hover:text-red-300 transition-colors">Workspaces</a> | |
| <a href="templates.html" class="text-gray-300 hover:text-white transition-colors">Templates</a> | |
| <a href="deployments.html" class="text-gray-300 hover:text-white transition-colors">Deployments</a> | |
| <a href="documentation.html" class="text-gray-300 hover:text-white transition-colors">Documentation</a> | |
| <a href="admin-login.html" class="text-gray-300 hover:text-white transition-colors">Admin</a> | |
| </div> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <a href="login.html" class="bg-gray-700 hover:bg-gray-600 px-4 py-2 rounded-lg text-white font-medium transition-colors"> | |
| Sign In | |
| </a> | |
| <a href="register.html" class="bg-red-500 hover:bg-red-600 px-4 py-2 rounded-lg text-white font-medium transition-colors"> | |
| Sign Up | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Workspaces Header --> | |
| <div class="bg-gradient-to-br from-gray-800 to-gray-900 py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6 bg-gradient-to-r from-red-400 to-red-600 bg-clip-text text-transparent"> | |
| Your Workspaces | |
| </h1> | |
| <p class="text-xl text-gray-300 mb-8 max-w-3xl mx-auto"> | |
| Create, manage, and collaborate on your development projects with AI-powered coding assistance. | |
| </p> | |
| <button class="bg-red-500 hover:bg-red-600 px-8 py-4 rounded-xl text-white font-semibold text-lg transition-all transform hover:scale-105"> | |
| <i data-feather="plus" class="w-5 h-5 inline mr-2"></i> | |
| Create New Workspace | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Workspaces Grid --> | |
| <div class="py-16 bg-gray-900"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Workspace 1 --> | |
| <div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group"> | |
| <div class="flex justify-between items-start mb-4"> | |
| <div class="w-12 h-12 bg-red-500 rounded-xl flex items-center justify-center group-hover:scale-110 transition-transform"> | |
| <i data-feather="code" class="w-6 h-6"></i> | |
| </div> | |
| <div class="flex space-x-2"> | |
| <button class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="edit" class="w-4 h-4"></i> | |
| </button> | |
| <button class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="trash-2" class="w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-semibold text-white mb-2">Web Application</h3> | |
| <p class="text-gray-400 text-sm mb-4">React + Node.js + PostgreSQL</p> | |
| <div class="flex items-center justify-between text-sm text-gray-300 mb-4"> | |
| <span>Last active: 2 hours ago</span> | |
| <span class="bg-green-500/20 text-green-400 px-2 py-1 rounded-full text-xs">Running</span> | |
| </div> | |
| <button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors"> | |
| Open Workspace | |
| </button> | |
| </div> | |
| <!-- Workspace 2 --> | |
| <div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group"> | |
| <div class="flex justify-between items-start mb-4"> | |
| <div class="w-12 h-12 bg-blue-500 rounded-xl flex items-center justify-center group-hover:scale-110 transition-transform"> | |
| <i data-feather="database" class="w-6 h-6"></i> | |
| </div> | |
| <div class="flex space-x-2"> | |
| <button class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="edit" class="w-4 h-4"></i> | |
| </button> | |
| <button class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="trash-2" class="w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-semibold text-white mb-2">Data Analytics</h3> | |
| <p class="text-gray-400 text-sm mb-4">Python + Jupyter + Pandas</p> | |
| <div class="flex items-center justify-between text-sm text-gray-300 mb-4"> | |
| <span>Last active: 1 day ago</span> | |
| <span class="bg-yellow-500/20 text-yellow-400 px-2 py-1 rounded-full text-xs">Paused</span> | |
| </div> | |
| <button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors"> | |
| Resume Workspace | |
| </button> | |
| </div> | |
| <!-- Workspace 3 --> | |
| <div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group"> | |
| <div class="flex justify-between items-start mb-4"> | |
| <div class="w-12 h-12 bg-green-500 rounded-xl flex items-center justify-center group-hover:scale-110 transition-transform"> | |
| <i data-feather="smartphone" class="w-6 h-6"></i> | |
| </div> | |
| <div class="flex space-x-2"> | |
| <button class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="edit" class="w-4 h-4"></i> | |
| </button> | |
| <button class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="trash-2" class="w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <h3 class="text-xl font-semibold text-white mb-2">Mobile App</h3> | |
| <p class="text-gray-400 text-sm mb-4">React Native + Firebase</p> | |
| <div class="flex items-center justify-between text-sm text-gray-300 mb-4"> | |
| <span>Last active: 3 days ago</span> | |
| <span class="bg-red-500/20 text-red-400 px-2 py-1 rounded-full text-xs">Stopped</span> | |
| </div> | |
| <button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors"> | |
| Start Workspace | |
| </button> | |
| </div> | |
| <!-- New Workspace Card --> | |
| <div class="bg-gray-800/50 rounded-2xl p-6 border-2 border-dashed border-gray-600 hover:border-red-500/40 transition-all group cursor-pointer"> | |
| <div class="flex flex-col items-center justify-center h-full text-center py-8"> | |
| <div class="w-16 h-16 bg-gray-700 rounded-xl flex items-center justify-center mb-4 group-hover:bg-red-500 transition-colors"> | |
| <i data-feather="plus" class="w-8 h-8 text-gray-400 group-hover:text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-white mb-2">Create New Workspace</h3> | |
| <p class="text-gray-400 text-sm">Start a new project with your preferred stack</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Resources Section --> | |
| <div class="py-16 bg-gray-800/50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-bold text-white mb-4">Need Help Getting Started?</h2> | |
| <p class="text-gray-300 text-lg">Explore our resources to make the most of CodeForge-AI</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-red-500 rounded-2xl flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="book-open" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-white mb-2">Documentation</h3> | |
| <p class="text-gray-400">Comprehensive guides and API references</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-blue-500 rounded-2xl flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="video" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-white mb-2">Tutorials</h3> | |
| <p class="text-gray-400">Step-by-step video tutorials and examples</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-green-500 rounded-2xl flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="users" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-white mb-2">Community</h3> | |
| <p class="text-gray-400">Join our developer community for support</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800 border-t border-gray-700 py-12"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <div class="w-8 h-8 bg-red-500 rounded-lg flex items-center justify-center"> | |
| <i data-feather="code" class="w-4 h-4"></i> | |
| </div> | |
| <span class="text-xl font-bold text-white">CodeForge-AI</span> | |
| </div> | |
| <p class="text-gray-400 text-sm"> | |
| The autonomous development platform for modern developers. | |
| </p> | |
| </div> | |
| <div> | |
| <h4 class="text-white font-semibold mb-4">Product</h4> | |
| <ul class="space-y-2 text-sm text-gray-400"> | |
| <li><a href="features.html" class="hover:text-red-400 transition-colors">Features</a></li> | |
| <li><a href="pricing.html" class="hover:text-red-400 transition-colors">Pricing</a></li> | |
| <li><a href="documentation.html" class="hover:text-red-400 transition-colors">Documentation</a></li> | |
| <li><a href="api.html" class="hover:text-red-400 transition-colors">API</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-white font-semibold mb-4">Company</h4> | |
| <ul class="space-y-2 text-sm text-gray-400"> | |
| <li><a href="about.html" class="hover:text-red-400 transition-colors">About</a></li> | |
| <li><a href="blog.html" class="hover:text-red-400 transition-colors">Blog</a></li> | |
| <li><a href="careers.html" class="hover:text-red-400 transition-colors">Careers</a></li> | |
| <li><a href="contact.html" class="hover:text-red-400 transition-colors">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-white font-semibold mb-4">Connect</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="github" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="linkedin" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-red-400 transition-colors"> | |
| <i data-feather="discord" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 mt-8 pt-8 text-center text-sm text-gray-400"> | |
| <p>© 2024 CodeForge-AI. All rights reserved. Built with security and performance in mind.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |