| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Pixel Palette Playground</title> |
| <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> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 50: '#f0f9ff', |
| 100: '#e0f2fe', |
| 500: '#3b82f6', |
| 600: '#2563eb', |
| 700: '#1d4ed8', |
| }, |
| secondary: { |
| 50: '#f5f3ff', |
| 100: '#ede9fe', |
| 500: '#8b5cf6', |
| 600: '#7c3aed', |
| 700: '#6d28d9', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-50 min-h-screen"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="container mx-auto px-4 py-12"> |
| <section class="text-center mb-16"> |
| <h1 class="text-5xl font-bold text-primary-700 mb-4">Pixel Palette Playground</h1> |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Explore the vibrant world of colors and design with our interactive playground</p> |
| </section> |
|
|
| <section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16"> |
| <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all hover:shadow-xl hover:-translate-y-1"> |
| <div class="h-48 bg-gradient-to-r from-primary-500 to-secondary-500"></div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold text-gray-800 mb-2">Color Explorer</h3> |
| <p class="text-gray-600 mb-4">Discover beautiful color combinations and palettes</p> |
| <a href="#" class="inline-flex items-center text-primary-600 hover:text-primary-700 font-medium"> |
| Explore |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> |
| </a> |
| </div> |
| </div> |
|
|
| <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all hover:shadow-xl hover:-translate-y-1"> |
| <div class="h-48 bg-gradient-to-r from-secondary-500 to-primary-500"></div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold text-gray-800 mb-2">Design Gallery</h3> |
| <p class="text-gray-600 mb-4">Get inspired by stunning UI designs and patterns</p> |
| <a href="#" class="inline-flex items-center text-primary-600 hover:text-primary-700 font-medium"> |
| Browse |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> |
| </a> |
| </div> |
| </div> |
|
|
| <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all hover:shadow-xl hover:-translate-y-1"> |
| <div class="h-48 bg-gradient-to-r from-primary-100 to-secondary-100"></div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold text-gray-800 mb-2">Tools & Resources</h3> |
| <p class="text-gray-600 mb-4">Essential tools for designers and developers</p> |
| <a href="#" class="inline-flex items-center text-primary-600 hover:text-primary-700 font-medium"> |
| Discover |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| <section class="bg-gradient-to-r from-primary-50 to-secondary-50 rounded-2xl p-8 md:p-12 mb-16"> |
| <div class="max-w-3xl mx-auto text-center"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Ready to create something amazing?</h2> |
| <p class="text-lg text-gray-600 mb-8">Join our community of designers and developers to share, learn, and grow together.</p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <a href="#" class="px-6 py-3 bg-primary-600 text-white font-medium rounded-lg hover:bg-primary-700 transition-colors"> |
| Get Started |
| </a> |
| <a href="#" class="px-6 py-3 bg-white text-primary-600 font-medium rounded-lg hover:bg-gray-50 transition-colors border border-primary-200"> |
| Learn More |
| </a> |
| </div> |
| </div> |
| </section> |
| </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> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |