Spaces:
Running
Running
File size: 16,031 Bytes
ad734d6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | <!DOCTYPE html>
<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> |