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>Ink & Thread Masters | Premium Printing Services</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 = { | |
| darkMode: 'class', | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: { | |
| 500: '#8b5cf6', | |
| 600: '#7c3aed', | |
| }, | |
| secondary: { | |
| 500: '#10b981', | |
| 600: '#059669', | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-900 text-gray-100 min-h-screen"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-12"> | |
| <!-- Hero Section --> | |
| <section class="mb-20"> | |
| <div class="flex flex-col md:flex-row items-center gap-8"> | |
| <div class="md:w-1/2"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6 bg-gradient-to-r from-primary-500 to-secondary-500 bg-clip-text text-transparent"> | |
| Transform Your Ideas Into Wearable Art | |
| </h1> | |
| <p class="text-lg text-gray-300 mb-8"> | |
| Professional embroidery, screen printing, and DTF printing services with unmatched quality and precision. | |
| </p> | |
| <div class="flex gap-4"> | |
| <a href="#services" class="px-6 py-3 bg-primary-500 hover:bg-primary-600 rounded-lg font-medium transition-colors"> | |
| Explore Services | |
| </a> | |
| <a href="#contact" class="px-6 py-3 border border-primary-500 text-primary-500 hover:bg-primary-500/10 rounded-lg font-medium transition-colors"> | |
| Get a Quote | |
| </a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <img src="http://static.photos/technology/1024x576/42" alt="Printing equipment" class="rounded-xl shadow-2xl"> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="mb-20"> | |
| <h2 class="text-3xl font-bold mb-12 text-center">Our Premium Printing Services</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Embroidery Card --> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg hover:shadow-xl transition-shadow group"> | |
| <div class="w-16 h-16 bg-primary-500/20 rounded-full flex items-center justify-center mb-6 group-hover:bg-primary-500/30 transition-colors"> | |
| <i data-feather="needle" class="text-primary-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Precision Embroidery</h3> | |
| <p class="text-gray-300 mb-4"> | |
| High-quality thread work with meticulous attention to detail. Perfect for logos, uniforms, and custom designs. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>100+ thread colors</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>Capable of 10,000+ stitches</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>Digitizing included</span> | |
| </li> | |
| </ul> | |
| <a href="#contact" class="text-primary-500 hover:text-primary-400 font-medium inline-flex items-center"> | |
| Get Embroidery Quote | |
| <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i> | |
| </a> | |
| </div> | |
| <!-- Screen Printing Card --> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg hover:shadow-xl transition-shadow group"> | |
| <div class="w-16 h-16 bg-primary-500/20 rounded-full flex items-center justify-center mb-6 group-hover:bg-primary-500/30 transition-colors"> | |
| <i data-feather="layers" class="text-primary-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Vibrant Screen Printing</h3> | |
| <p class="text-gray-300 mb-4"> | |
| Bold, durable prints with vibrant colors that last. Ideal for bulk orders and custom apparel. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>1-12 color prints</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>Water-based & plastisol inks</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>Fast turnaround</span> | |
| </li> | |
| </ul> | |
| <a href="#contact" class="text-primary-500 hover:text-primary-400 font-medium inline-flex items-center"> | |
| Get Screen Printing Quote | |
| <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i> | |
| </a> | |
| </div> | |
| <!-- DTF Printing Card --> | |
| <div class="bg-gray-800 rounded-xl p-6 shadow-lg hover:shadow-xl transition-shadow group"> | |
| <div class="w-16 h-16 bg-primary-500/20 rounded-full flex items-center justify-center mb-6 group-hover:bg-primary-500/30 transition-colors"> | |
| <i data-feather="printer" class="text-primary-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">DTF Printing</h3> | |
| <p class="text-gray-300 mb-4"> | |
| Direct-to-film technology for full-color, photorealistic prints on any fabric with exceptional durability. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>No color limits</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>Works on cotton, polyester & blends</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 text-secondary-500 mr-2"></i> | |
| <span>Great for small batches</span> | |
| </li> | |
| </ul> | |
| <a href="#contact" class="text-primary-500 hover:text-primary-400 font-medium inline-flex items-center"> | |
| Get DTF Quote | |
| <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Process Section --> | |
| <section class="mb-20"> | |
| <h2 class="text-3xl font-bold mb-12 text-center">Our Simple Process</h2> | |
| <div class="grid md:grid-cols-4 gap-6"> | |
| <div class="bg-gray-800 p-6 rounded-xl text-center"> | |
| <div class="w-12 h-12 bg-primary-500 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="font-bold">1</span> | |
| </div> | |
| <h3 class="font-medium mb-2">Consultation</h3> | |
| <p class="text-sm text-gray-300">Discuss your project needs and requirements</p> | |
| </div> | |
| <div class="bg-gray-800 p-6 rounded-xl text-center"> | |
| <div class="w-12 h-12 bg-primary-500 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="font-bold">2</span> | |
| </div> | |
| <h3 class="font-medium mb-2">Artwork</h3> | |
| <p class="text-sm text-gray-300">We prepare or digitize your design</p> | |
| </div> | |
| <div class="bg-gray-800 p-6 rounded-xl text-center"> | |
| <div class="w-12 h-12 bg-primary-500 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="font-bold">3</span> | |
| </div> | |
| <h3 class="font-medium mb-2">Production</h3> | |
| <p class="text-sm text-gray-300">Your items are printed with care</p> | |
| </div> | |
| <div class="bg-gray-800 p-6 rounded-xl text-center"> | |
| <div class="w-12 h-12 bg-primary-500 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="font-bold">4</span> | |
| </div> | |
| <h3 class="font-medium mb-2">Delivery</h3> | |
| <p class="text-sm text-gray-300">Receive your finished products</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="bg-gray-800 rounded-xl p-8 md:p-12 shadow-lg"> | |
| <div class="max-w-3xl mx-auto"> | |
| <h2 class="text-3xl font-bold mb-2">Get a Quote</h2> | |
| <p class="text-gray-300 mb-8">Tell us about your project and we'll get back to you within 24 hours</p> | |
| <form class="grid md:grid-cols-2 gap-6"> | |
| <div> | |
| <label for="name" class="block mb-2 font-medium">Name</label> | |
| <input type="text" id="name" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:ring-2 focus:ring-primary-500 focus:border-transparent outline-none transition"> | |
| </div> | |
| <div> | |
| <label for="email" class="block mb-2 font-medium">Email</label> | |
| <input type="email" id="email" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:ring-2 focus:ring-primary-500 focus:border-transparent outline-none transition"> | |
| </div> | |
| <div> | |
| <label for="service" class="block mb-2 font-medium">Service</label> | |
| <select id="service" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:ring-2 focus:ring-primary-500 focus:border-transparent outline-none transition"> | |
| <option value="">Select a service</option> | |
| <option value="embroidery">Embroidery</option> | |
| <option value="screen-printing">Screen Printing</option> | |
| <option value="dtf">DTF Printing</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label for="quantity" class="block mb-2 font-medium">Quantity</label> | |
| <input type="number" id="quantity" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:ring-2 focus:ring-primary-500 focus:border-transparent outline-none transition"> | |
| </div> | |
| <div class="md:col-span-2"> | |
| <label for="message" class="block mb-2 font-medium">Project Details</label> | |
| <textarea id="message" rows="4" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:ring-2 focus:ring-primary-500 focus:border-transparent outline-none transition"></textarea> | |
| </div> | |
| <div class="md:col-span-2"> | |
| <button type="submit" class="px-8 py-3 bg-primary-500 hover:bg-primary-600 rounded-lg font-medium transition-colors w-full md:w-auto"> | |
| Submit Request | |
| </button> | |
| </div> | |
| </form> | |
| </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> |