Spaces:
Running
Running
Create an app for ironworkers that has all the tools they may need - Initial Deployment
ad734d6 verified | <html lang="en" class="scroll-smooth"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Ironworkers Toolbox</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| .tool-card { | |
| transition: all 0.3s ease; | |
| } | |
| .tool-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%); | |
| } | |
| .active-tab { | |
| background-color: rgba(255, 255, 255, 0.2); | |
| border-left: 4px solid white; | |
| } | |
| .safety-badge { | |
| position: absolute; | |
| top: -8px; | |
| right: -8px; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100 font-sans"> | |
| <!-- Header --> | |
| <header class="gradient-bg text-white shadow-lg"> | |
| <div class="container mx-auto px-4 py-6"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-4"> | |
| <i class="fas fa-hard-hat text-3xl text-yellow-400"></i> | |
| <div> | |
| <h1 class="text-2xl font-bold">Ironworkers Toolbox</h1> | |
| <p class="text-sm text-blue-200">Essential tools for steel workers</p> | |
| </div> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-4"> | |
| <button class="bg-yellow-500 hover:bg-yellow-600 text-gray-900 px-4 py-2 rounded-lg font-medium transition flex items-center"> | |
| <i class="fas fa-user-shield mr-2"></i> Safety First | |
| </button> | |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg font-medium transition"> | |
| Sign In | |
| </button> | |
| </div> | |
| <button class="md:hidden text-white text-2xl"> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Main Content --> | |
| <main class="container mx-auto px-4 py-8"> | |
| <!-- Hero Section --> | |
| <section class="bg-white rounded-xl shadow-md overflow-hidden mb-10"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 p-8 md:p-12"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Your Complete Ironworking Companion</h2> | |
| <p class="text-gray-600 mb-6">Access essential calculation tools, reference materials, safety guidelines, and more—all in one place.</p> | |
| <div class="flex flex-wrap gap-3"> | |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition flex items-center"> | |
| <i class="fas fa-bolt mr-2"></i> Quick Tools | |
| </button> | |
| <button class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition flex items-center"> | |
| <i class="fas fa-graduation-cap mr-2"></i> Learn | |
| </button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 relative hidden md:block"> | |
| <div class="absolute inset-0 bg-gradient-to-r from-blue-900 to-blue-700 opacity-90"></div> | |
| <img src="https://images.unsplash.com/photo-1581094794329-c811329cf0f7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" | |
| alt="Ironworker at work" | |
| class="w-full h-full object-cover"> | |
| <div class="absolute bottom-0 left-0 right-0 p-6 text-white"> | |
| <div class="flex items-center space-x-2"> | |
| <i class="fas fa-exclamation-triangle text-yellow-300"></i> | |
| <span class="text-sm">Always follow proper safety protocols</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Tools Navigation --> | |
| <div class="flex flex-col md:flex-row gap-6 mb-10"> | |
| <!-- Sidebar Navigation --> | |
| <div class="w-full md:w-64 flex-shrink-0 bg-white rounded-xl shadow-md p-4 h-fit sticky top-4"> | |
| <h3 class="font-bold text-gray-700 mb-4 flex items-center"> | |
| <i class="fas fa-tools mr-2 text-blue-600"></i> Tool Categories | |
| </h3> | |
| <ul class="space-y-2"> | |
| <li> | |
| <a href="#calculators" class="block px-4 py-2 rounded-lg hover:bg-blue-50 text-blue-700 active-tab"> | |
| <i class="fas fa-calculator mr-2"></i> Calculators | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#references" class="block px-4 py-2 rounded-lg hover:bg-blue-50 text-gray-700"> | |
| <i class="fas fa-book mr-2"></i> References | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#safety" class="block px-4 py-2 rounded-lg hover:bg-blue-50 text-gray-700"> | |
| <i class="fas fa-shield-alt mr-2"></i> Safety Tools | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#blueprints" class="block px-4 py-2 rounded-lg hover:bg-blue-50 text-gray-700"> | |
| <i class="fas fa-ruler-combined mr-2"></i> Blueprint Tools | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#productivity" class="block px-4 py-2 rounded-lg hover:bg-blue-50 text-gray-700"> | |
| <i class="fas fa-chart-line mr-2"></i> Productivity | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#conversions" class="block px-4 py-2 rounded-lg hover:bg-blue-50 text-gray-700"> | |
| <i class="fas fa-exchange-alt mr-2"></i> Unit Converter | |
| </a> | |
| </li> | |
| </ul> | |
| <div class="mt-6 p-4 bg-yellow-50 rounded-lg border border-yellow-200"> | |
| <h4 class="font-medium text-yellow-800 flex items-center"> | |
| <i class="fas fa-exclamation-circle mr-2 text-yellow-500"></i> Safety Tip | |
| </h4> | |
| <p class="text-sm text-yellow-700 mt-1">Always inspect your harness and PPE before every use.</p> | |
| </div> | |
| </div> | |
| <!-- Main Tools Section --> | |
| <div class="flex-1"> | |
| <!-- Calculators Section --> | |
| <section id="calculators" class="bg-white rounded-xl shadow-md p-6 mb-8"> | |
| <div class="flex items-center justify-between mb-6"> | |
| <h2 class="text-2xl font-bold text-gray-800 flex items-center"> | |
| <i class="fas fa-calculator text-blue-600 mr-3"></i> Construction Calculators | |
| </h2> | |
| <div class="relative"> | |
| <input type="text" placeholder="Search tools..." class="pl-10 pr-4 py-2 border rounded-lg w-64 focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Bolt Torque Calculator --> | |
| <div class="tool-card bg-white border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg relative"> | |
| <div class="safety-badge bg-red-500 text-white text-xs font-bold px-2 py-1 rounded-full shadow">OSHA</div> | |
| <div class="p-5"> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
| <i class="fas fa-bolt text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-1">Bolt Torque Calculator</h3> | |
| <p class="text-gray-600 text-sm">Calculate proper torque values for structural bolts</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Steel Weight Calculator --> | |
| <div class="tool-card bg-white border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg"> | |
| <div class="p-5"> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
| <i class="fas fa-weight-hanging text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-1">Steel Weight Calculator</h3> | |
| <p class="text-gray-600 text-sm">Calculate weight of steel beams, plates, and bars</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Beam Load Calculator --> | |
| <div class="tool-card bg-white border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg"> | |
| <div class="p-5"> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
| <i class="fas fa-vector-square text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-1">Beam Load Calculator</h3> | |
| <p class="text-gray-600 text-sm">Calculate load capacities for steel beams</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Welding Rod Calculator --> | |
| <div class="tool-card bg-white border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg relative"> | |
| <div class="safety-badge bg-red-500 text-white text-xs font-bold px-2 py-1 rounded-full shadow">OSHA</div> | |
| <div class="p-5"> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
| <i class="fas fa-fire text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-1">Welding Rod Calculator</h3> | |
| <p class="text-gray-600 text-sm">Determine welding rod requirements</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Connection Design Tool --> | |
| <div class="tool-card bg-white border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg"> | |
| <div class="p-5"> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
| <i class="fas fa-link text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-1">Connection Design</h3> | |
| <p class="text-gray-600 text-sm">Design bolted and welded connections</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg transition"> | |
| Open Tool | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Lift Planning Tool --> | |
| <div class="tool-card bg-white border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg relative"> | |
| <div class="safety-badge bg-red-500 text-white text-xs font-bold px-2 py-1 rounded-full shadow">Critical</div> | |
| <div class="p-5"> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-100 p-3 rounded-lg mr-4"> | |
| <i class="fas fa-crane text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-lg mb-1">Lift Planning Tool</h3> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Gracedamien/a" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |