| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Compliance Document Check | Twinory</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800&display=swap" rel="stylesheet"> |
| <style> |
| body { |
| font-family: 'Poppins', sans-serif; |
| color: #FFFFFF; |
| position: relative; |
| min-height: 100vh; |
| background-color: #0D0D0D; |
| } |
| body::before { |
| content: ""; |
| position: fixed; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background-image: url('http://static.photos/document/1200x630/1'); |
| background-size: cover; |
| background-position: center; |
| opacity: 0.2; |
| z-index: -1; |
| } |
| h1, h2, h3 { |
| font-family: 'Montserrat', sans-serif; |
| } |
| .content-box { |
| background-color: rgba(13, 13, 13, 0.85); |
| border: 1px solid #333333; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20"> |
| <div class="content-box rounded-xl p-8 lg:p-12 shadow-2xl"> |
| <div class="text-center mb-12"> |
| <img src="https://huggingface.co/spaces/Twinory/undefined/resolve/main/images/TWINORY%20Logo%20-%20Edited.png" alt="Twinory Logo" class="h-16 mx-auto"> |
| <p class="text-gray-300 mt-2">Just list it, with perfection!</p> |
| </div> |
| |
| <h1 class="text-4xl md:text-5xl font-bold text-center mb-8">Compliance Document Check</h1> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> |
| <div> |
| <h2 class="text-2xl font-bold mb-4">Upload Your Documents</h2> |
| <div class="border-2 border-dashed border-gray-700 rounded-lg p-8 text-center"> |
| <i data-feather="upload" class="w-12 h-12 text-[#FF9900] mx-auto mb-4"></i> |
| <p class="text-gray-400 mb-4">Drag & drop your compliance documents here</p> |
| <button class="bg-[#FF9900] text-black px-6 py-2 rounded-md font-medium hover:bg-orange-600 transition duration-300"> |
| Browse Files |
| </button> |
| </div> |
| </div> |
| |
| <div> |
| <h2 class="text-2xl font-bold mb-4">Verification Checklist</h2> |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i> |
| <div> |
| <h3 class="font-bold">Business License</h3> |
| <p class="text-gray-400 text-sm">Valid and up-to-date business license document</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i> |
| <div> |
| <h3 class="font-bold">Product Certifications</h3> |
| <p class="text-gray-400 text-sm">Relevant safety and quality certifications</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i> |
| <div> |
| <h3 class="font-bold">Trademark Documentation</h3> |
| <p class="text-gray-400 text-sm">Registered trademark proof if applicable</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i> |
| <div> |
| <h3 class="font-bold">FDA/CE Compliance</h3> |
| <p class="text-gray-400 text-sm">For regulated product categories</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-12 bg-gray-900 rounded-xl p-6"> |
| <h3 class="text-xl font-bold mb-4">Compliance Status</h3> |
| <div class="flex items-center"> |
| <div class="w-full bg-gray-800 rounded-full h-4"> |
| <div class="bg-[#FF9900] h-4 rounded-full" style="width: 0%"></div> |
| </div> |
| <span class="ml-4 text-gray-300">0% Complete</span> |
| </div> |
| <p class="text-gray-400 mt-4">Upload documents to begin verification process</p> |
| </div> |
| </div> |
| </div> |
|
|
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |