| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Component Crafters Workshop</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> |
| </head> |
| <body class="bg-gray-100 min-h-screen"> |
| <custom-navbar></custom-navbar> |
| <main class="container mx-auto px-4 py-8"> |
| <section class="mb-12"> |
| <h1 class="text-4xl font-bold text-center mb-8">Component Crafters Workshop</h1> |
| <p class="text-xl text-center text-gray-600 max-w-2xl mx-auto"> |
| Explore our collection of beautifully crafted UI components ready to enhance your projects. |
| </p> |
| </section> |
|
|
| <section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12"> |
| <custom-card |
| title="Interactive Cards" |
| description="Beautiful animated cards with hover effects" |
| icon="credit-card" |
| ></custom-card> |
| |
| <custom-card |
| title="Navigation Bars" |
| description="Responsive navigation components" |
| icon="navigation" |
| ></custom-card> |
| |
| <custom-card |
| title="Form Elements" |
| description="Modern form inputs and controls" |
| icon="edit" |
| ></custom-card> |
| </section> |
|
|
| <section class="mb-12"> |
| <custom-accordion></custom-accordion> |
| </section> |
|
|
| <section class="mb-12"> |
| <custom-testimonials></custom-testimonials> |
| </section> |
|
|
| <section class="mb-12"> |
| <custom-newsletter></custom-newsletter> |
| </section> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/card.js"></script> |
| <script src="components/accordion.js"></script> |
| <script src="components/testimonials.js"></script> |
| <script src="components/newsletter.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> |