Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Crimson Canvas Studio</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| </head> | |
| <body class="bg-gray-100"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-12"> | |
| <section class="hero bg-red-500 text-white rounded-2xl p-8 mb-12"> | |
| <div class="max-w-3xl mx-auto text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Welcome to Crimson Canvas Studio</h1> | |
| <p class="text-xl mb-8">Where bold red meets creative expression</p> | |
| <a href="#" class="inline-block bg-white text-red-500 font-semibold px-6 py-3 rounded-lg hover:bg-gray-100 transition">Explore Now</a> | |
| </div> | |
| </section> | |
| <section class="features grid grid-cols-1 md:grid-cols-3 gap-8 mb-16"> | |
| <div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition"> | |
| <div class="icon bg-red-100 text-red-500 w-16 h-16 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="brush"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Creative Design</h3> | |
| <p class="text-gray-600">Stunning visuals with our signature crimson touch</p> | |
| </div> | |
| <div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition"> | |
| <div class="icon bg-red-100 text-red-500 w-16 h-16 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="code"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Innovative Code</h3> | |
| <p class="text-gray-600">Cutting-edge solutions with bold execution</p> | |
| </div> | |
| <div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition"> | |
| <div class="icon bg-red-100 text-red-500 w-16 h-16 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="zap"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Lightning Fast</h3> | |
| <p class="text-gray-600">Performance that matches our vibrant energy</p> | |
| </div> | |
| </section> | |
| <section class="cta bg-red-50 rounded-xl p-8 text-center"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-4 text-red-700">Ready to make something bold?</h2> | |
| <p class="max-w-2xl mx-auto mb-6 text-gray-700">Join our studio and let's create something extraordinary together.</p> | |
| <a href="#" class="inline-block bg-red-500 text-white font-semibold px-6 py-3 rounded-lg hover:bg-red-600 transition">Get Started</a> | |
| </section> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="script.js"></script> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |