Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Community - Flux Fusion Studio</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> | |
| tailwind.config = { | |
| darkMode: 'class', | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#10B981', | |
| secondary: '#F97316' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-900 text-white"> | |
| <flux-header></flux-header> | |
| <main class="container mx-auto px-4 py-8"> | |
| <h1 class="text-3xl font-bold mb-8 text-center">Community Hub</h1> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> | |
| <!-- Community Feed --> | |
| <div class="lg:col-span-2"> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg mb-6"> | |
| <h2 class="text-2xl font-bold mb-4 flex items-center"> | |
| <i data-feather="activity" class="mr-2 text-primary"></i> | |
| Recent Activity | |
| </h2> | |
| <div class="space-y-6"> | |
| <!-- Post 1 --> | |
| <div class="border-b border-gray-700 pb-6 last:border-0 last:pb-0"> | |
| <div class="flex items-start mb-3"> | |
| <div class="bg-gradient-to-br from-purple-500 to-indigo-600 w-10 h-10 rounded-full flex items-center justify-center mr-3"> | |
| <span class="font-bold">A</span> | |
| </div> | |
| <div> | |
| <h3 class="font-bold">Alex Johnson</h3> | |
| <p class="text-gray-400 text-sm">Posted a new creation • 2 hours ago</p> | |
| </div> | |
| </div> | |
| <p class="mb-3 text-gray-300"> | |
| Just created an amazing landscape using the Image Generator Pro! The attention to detail | |
| is incredible. Check out my latest work below. | |
| </p> | |
| <div class="bg-gray-700 rounded-lg p-2 mb-3"> | |
| <div class="bg-gradient-to-r from-blue-900 to-purple-900 aspect-video rounded-md flex items-center justify-center"> | |
| <span class="text-gray-400">AI Generated Landscape Image</span> | |
| </div> | |
| </div> | |
| <div class="flex space-x-4"> | |
| <button class="flex items-center text-gray-400 hover:text-primary"> | |
| <i data-feather="heart" class="w-4 h-4 mr-1"></i> | |
| <span>24</span> | |
| </button> | |
| <button class="flex items-center text-gray-400 hover:text-primary"> | |
| <i data-feather="message-circle" class="w-4 h-4 mr-1"></i> | |
| <span>7</span> | |
| </button> | |
| <button class="flex items-center text-gray-400 hover:text-primary"> | |
| <i data-feather="share" class="w-4 h-4 mr-1"></i> | |
| <span>Share</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Post 2 --> | |
| <div class="border-b border-gray-700 pb-6 last:border-0 last:pb-0"> | |
| <div class="flex items-start mb-3"> | |
| <div class="bg-gradient-to-br from-green-500 to-teal-600 w-10 h-10 rounded-full flex items-center justify-center mr-3"> | |
| <span class="font-bold">S</span> | |
| </div> | |
| <div> | |
| <h3 class="font-bold">Sam Rivera</h3> | |
| <p class="text-gray-400 text-sm">Shared a tutorial • 5 hours ago</p> | |
| </div> | |
| </div> | |
| <p class="mb-3 text-gray-300"> | |
| Created a step-by-step guide on fine-tuning the Chat Assistant Elite for customer service applications. | |
| </p> | |
| <div class="bg-gray-700 rounded-lg p-4 mb-3"> | |
| <h4 class="font-bold mb-2">Fine-tuning Guide: Customer Service Chatbot</h4> | |
| <p class="text-gray-400 text-sm mb-3"> | |
| Learn how to customize your AI assistant for handling customer inquiries effectively... | |
| </p> | |
| <button class="text-primary font-medium flex items-center"> | |
| Read Tutorial | |
| <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i> | |
| </button> | |
| </div> | |
| <div class="flex space-x-4"> | |
| <button class="flex items-center text-gray-400 hover:text-primary"> | |
| <i data-feather="heart" class="w-4 h-4 mr-1"></i> | |
| <span>42</span> | |
| </button> | |
| <button class="flex items-center text-gray-400 hover:text-primary"> | |
| <i data-feather="message-circle" class="w-4 h-4 mr-1"></i> | |
| <span>15</span> | |
| </button> | |
| <button class="flex items-center text-gray-400 hover:text-primary"> | |
| <i data-feather="share" class="w-4 h-4 mr-1"></i> | |
| <span>Share</span> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg"> | |
| <h2 class="text-2xl font-bold mb-4 flex items-center"> | |
| <i data-feather="trending-up" class="mr-2 text-primary"></i> | |
| Popular Creations | |
| </h2> | |
| <div class="grid grid-cols-2 md:grid-cols-3 gap-4"> | |
| <div class="aspect-square bg-gradient-to-br from-yellow-900 to-orange-800 rounded-lg cursor-pointer hover:opacity-90 transition"></div> | |
| <div class="aspect-square bg-gradient-to-br from-pink-900 to-red-800 rounded-lg cursor-pointer hover:opacity-90 transition"></div> | |
| <div class="aspect-square bg-gradient-to-br from-indigo-900 to-purple-800 rounded-lg cursor-pointer hover:opacity-90 transition"></div> | |
| <div class="aspect-square bg-gradient-to-br from-green-900 to-teal-800 rounded-lg cursor-pointer hover:opacity-90 transition"></div> | |
| <div class="aspect-square bg-gradient-to-br from-blue-900 to-cyan-800 rounded-lg cursor-pointer hover:opacity-90 transition"></div> | |
| <div class="aspect-square bg-gradient-to-br from-red-900 to-pink-800 rounded-lg cursor-pointer hover:opacity-90 transition"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Sidebar --> | |
| <div class="space-y-6"> | |
| <!-- Stats --> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg"> | |
| <h2 class="text-xl font-bold mb-4 flex items-center"> | |
| <i data-feather="bar-chart-2" class="mr-2 text-primary"></i> | |
| Community Stats | |
| </h2> | |
| <div class="space-y-4"> | |
| <div> | |
| <div class="flex justify-between mb-1"> | |
| <span class="text-gray-400">Members</span> | |
| <span class="font-bold">12,482</span> | |
| </div> | |
| <div class="w-full bg-gray-700 rounded-full h-2"> | |
| <div class="bg-primary h-2 rounded-full" style="width: 75%"></div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="flex justify-between mb-1"> | |
| <span class="text-gray-400">Creations Shared</span> | |
| <span class="font-bold">8,934</span> | |
| </div> | |
| <div class="w-full bg-gray-700 rounded-full h-2"> | |
| <div class="bg-secondary h-2 rounded-full" style="width: 60%"></div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="flex justify-between mb-1"> | |
| <span class="text-gray-400">Active Today</span> | |
| <span class="font-bold">1,247</span> | |
| </div> | |
| <div class="w-full bg-gray-700 rounded-full h-2"> | |
| <div class="bg-green-500 h-2 rounded-full" style="width: 35%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Leaderboard --> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg"> | |
| <h2 class="text-xl font-bold mb-4 flex items-center"> | |
| <i data-feather="award" class="mr-2 text-primary"></i> | |
| Top Contributors | |
| </h2> | |
| <div class="space-y-3"> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center"> | |
| <div class="bg-gradient-to-br from-yellow-500 to-orange-600 w-8 h-8 rounded-full flex items-center justify-center mr-3"> | |
| <span class="font-bold text-xs">1</span> | |
| </div> | |
| <span>Alex Johnson</span> | |
| </div> | |
| <span class="bg-gray-700 px-2 py-1 rounded text-sm">142 pts</span> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center"> | |
| <div class="bg-gradient-to-br from-gray-400 to-gray-600 w-8 h-8 rounded-full flex items-center justify-center mr-3"> | |
| <span class="font-bold text-xs">2</span> | |
| </div> | |
| <span>Sam Rivera</span> | |
| </div> | |
| <span class="bg-gray-700 px-2 py-1 rounded text-sm">128 pts</span> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center"> | |
| <div class="bg-gradient-to-br from-orange-700 to-red-800 w-8 h-8 rounded-full flex items-center justify-center mr-3"> | |
| <span class="font-bold text-xs">3</span> | |
| </div> | |
| <span>Jordan Kim</span> | |
| </div> | |
| <span class="bg-gray-700 px-2 py-1 rounded text-sm">97 pts</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Events --> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg"> | |
| <h2 class="text-xl font-bold mb-4 flex items-center"> | |
| <i data-feather="calendar" class="mr-2 text-primary"></i> | |
| Upcoming Events | |
| </h2> | |
| <div class="space-y-4"> | |
| <div class="border-l-4 border-primary pl-3"> | |
| <h3 class="font-bold">AI Art Challenge</h3> | |
| <p class="text-gray-400 text-sm">Starts June 15</p> | |
| </div> | |
| <div class="border-l-4 border-secondary pl-3"> | |
| <h3 class="font-bold">Model Workshop</h3> | |
| <p class="text-gray-400 text-sm">June 22, 2PM EST</p> | |
| </div> | |
| <div class="border-l-4 border-green-500 pl-3"> | |
| <h3 class="font-bold">Community Meetup</h3> | |
| <p class="text-gray-400 text-sm">July 5, 6PM EST</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <flux-footer></flux-footer> | |
| <script src="components/header.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |