Spaces:
Running
Running
File size: 35,377 Bytes
4e985c7 |
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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WinCustomizer - Windows Image Customization Tool</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">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
dark: {
800: '#1e293b',
900: '#0f172a',
}
}
}
}
}
</script>
<style>
.custom-scrollbar::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #1e293b;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #475569;
}
.draggable-item {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.draggable-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.progress-bar {
transition: width 0.3s ease;
}
</style>
</head>
<body class="bg-gray-900 text-gray-200 min-h-screen">
<div class="flex flex-col h-screen">
<!-- Header -->
<header class="bg-gray-800 border-b border-gray-700 px-6 py-4 flex items-center justify-between">
<div class="flex items-center space-x-4">
<i class="fab fa-windows text-blue-400 text-2xl"></i>
<h1 class="text-xl font-bold text-white">WinCustomizer</h1>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-md text-sm font-medium transition">
<i class="fas fa-save mr-2"></i>Save Configuration
</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md text-sm font-medium transition">
<i class="fas fa-cog mr-2"></i>Settings
</button>
</div>
</header>
<!-- Main Content -->
<div class="flex flex-1 overflow-hidden">
<!-- Sidebar -->
<aside class="w-64 bg-gray-800 border-r border-gray-700 flex flex-col">
<div class="p-4 border-b border-gray-700">
<div class="relative">
<input type="text" placeholder="Search features..."
class="w-full bg-gray-700 rounded-md py-2 px-4 pl-10 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500">
<i class="fas fa-search absolute left-3 top-2.5 text-gray-400"></i>
</div>
</div>
<nav class="flex-1 overflow-y-auto custom-scrollbar">
<div class="p-2">
<div class="mb-4">
<h3 class="text-xs font-semibold text-gray-400 uppercase tracking-wider px-3 py-2">Image Operations</h3>
<ul>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md bg-gray-700 text-white">
<i class="fas fa-hard-drive mr-3 text-blue-400"></i>
Mount/Dismount WIM
</a>
</li>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-file-export mr-3 text-blue-400"></i>
Create Custom ISO
</a>
</li>
</ul>
</div>
<div class="mb-4">
<h3 class="text-xs font-semibold text-gray-400 uppercase tracking-wider px-3 py-2">Customization</h3>
<ul>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-plug mr-3 text-blue-400"></i>
Add Drivers
</a>
</li>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-trash mr-3 text-blue-400"></i>
Remove Bloatware
</a>
</li>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-shield-alt mr-3 text-blue-400"></i>
Disable Telemetry
</a>
</li>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-microchip mr-3 text-blue-400"></i>
Remove TPM/Requirements
</a>
</li>
</ul>
</div>
<div class="mb-4">
<h3 class="text-xs font-semibold text-gray-400 uppercase tracking-wider px-3 py-2">Updates</h3>
<ul>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-sync mr-3 text-blue-400"></i>
Manage Updates
</a>
</li>
<li>
<a href="#" class="flex items-center px-3 py-2 text-sm font-medium rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-download mr-3 text-blue-400"></i>
Integrate Updates
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="p-4 border-t border-gray-700">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=User&background=0ea5e9&color=fff" alt="">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-white">Current User</p>
<p class="text-xs font-medium text-gray-400">Administrator</p>
</div>
</div>
</div>
</aside>
<!-- Main Panel -->
<main class="flex-1 overflow-auto custom-scrollbar bg-gray-900 p-6">
<div class="max-w-7xl mx-auto">
<div class="mb-6">
<h2 class="text-2xl font-bold text-white">Windows Image Customization</h2>
<p class="text-gray-400 mt-1">Customize your Windows installation image with advanced options</p>
</div>
<!-- WIM Operations Card -->
<div class="bg-gray-800 rounded-lg shadow-md overflow-hidden mb-6">
<div class="px-6 py-4 border-b border-gray-700">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-hard-drive mr-2 text-blue-400"></i>
WIM Image Operations
</h3>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label class="block text-sm font-medium text-gray-300 mb-2">Select WIM File</label>
<div class="flex">
<input type="text" class="flex-1 bg-gray-700 border border-gray-600 rounded-l-md px-4 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="C:\path\to\install.wim">
<button class="bg-gray-600 hover:bg-gray-500 px-4 py-2 rounded-r-md text-sm font-medium transition">
<i class="fas fa-folder-open"></i>
</button>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-300 mb-2">Select Edition</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded-md px-4 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
<option>Windows 11 Pro</option>
<option>Windows 11 Home</option>
<option>Windows 11 Enterprise</option>
<option>Windows 11 Education</option>
</select>
</div>
</div>
<div class="mt-6 flex space-x-4">
<button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-md text-sm font-medium transition">
<i class="fas fa-upload mr-2"></i>Mount Image
</button>
<button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-md text-sm font-medium transition">
<i class="fas fa-download mr-2"></i>Dismount Image
</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md text-sm font-medium transition">
<i class="fas fa-info-circle mr-2"></i>Image Info
</button>
</div>
</div>
</div>
<!-- Customization Options -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-6">
<!-- Remove Bloatware Card -->
<div class="bg-gray-800 rounded-lg shadow-md overflow-hidden">
<div class="px-6 py-4 border-b border-gray-700">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-trash mr-2 text-blue-400"></i>
Remove Bloatware
</h3>
</div>
<div class="p-6">
<div class="h-64 overflow-y-auto custom-scrollbar bg-gray-700 rounded-md p-4 mb-4">
<div class="space-y-2">
<div class="flex items-center draggable-item bg-gray-600 p-3 rounded-md cursor-move">
<i class="fas fa-grip-vertical text-gray-400 mr-3"></i>
<span class="flex-1 text-sm">3D Viewer</span>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex items-center draggable-item bg-gray-600 p-3 rounded-md cursor-move">
<i class="fas fa-grip-vertical text-gray-400 mr-3"></i>
<span class="flex-1 text-sm">Cortana</span>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex items-center draggable-item bg-gray-600 p-3 rounded-md cursor-move">
<i class="fas fa-grip-vertical text-gray-400 mr-3"></i>
<span class="flex-1 text-sm">Microsoft Edge</span>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex items-center draggable-item bg-gray-600 p-3 rounded-md cursor-move">
<i class="fas fa-grip-vertical text-gray-400 mr-3"></i>
<span class="flex-1 text-sm">Mail and Calendar</span>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex items-center draggable-item bg-gray-600 p-3 rounded-md cursor-move">
<i class="fas fa-grip-vertical text-gray-400 mr-3"></i>
<span class="flex-1 text-sm">Mixed Reality Portal</span>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-times"></i>
</button>
</div>
<div class="flex items-center draggable-item bg-gray-600 p-3 rounded-md cursor-move">
<i class="fas fa-grip-vertical text-gray-400 mr-3"></i>
<span class="flex-1 text-sm">Paint 3D</span>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-times"></i>
</button>
</div>
</div>
</div>
<div class="flex justify-between items-center">
<button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-md text-sm font-medium transition">
<i class="fas fa-plus mr-2"></i>Add Custom App
</button>
<button class="px-4 py-2 bg-green-600 hover:bg-green-700 rounded-md text-sm font-medium transition">
<i class="fas fa-check mr-2"></i>Apply Changes
</button>
</div>
</div>
</div>
<!-- Security & Privacy Card -->
<div class="bg-gray-800 rounded-lg shadow-md overflow-hidden">
<div class="px-6 py-4 border-b border-gray-700">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-shield-alt mr-2 text-blue-400"></i>
Security & Privacy
</h3>
</div>
<div class="p-6">
<div class="space-y-4">
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="telemetry" name="telemetry" type="checkbox" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-600 rounded bg-gray-700">
</div>
<div class="ml-3 text-sm">
<label for="telemetry" class="font-medium text-gray-300">Disable Telemetry & Tracking</label>
<p class="text-gray-400">Prevents Windows from sending usage data to Microsoft</p>
</div>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="tpm" name="tpm" type="checkbox" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-600 rounded bg-gray-700">
</div>
<div class="ml-3 text-sm">
<label for="tpm" class="font-medium text-gray-300">Remove TPM Requirement</label>
<p class="text-gray-400">Bypasses hardware requirements for Windows 11</p>
</div>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="secureboot" name="secureboot" type="checkbox" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-600 rounded bg-gray-700">
</div>
<div class="ml-3 text-sm">
<label for="secureboot" class="font-medium text-gray-300">Bypass Secure Boot</label>
<p class="text-gray-400">Allows installation on systems without Secure Boot</p>
</div>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="defender" name="defender" type="checkbox" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-600 rounded bg-gray-700">
</div>
<div class="ml-3 text-sm">
<label for="defender" class="font-medium text-gray-300">Disable Windows Defender</label>
<p class="text-gray-400">Turns off real-time protection and background scanning</p>
</div>
</div>
</div>
<div class="mt-6">
<button class="w-full px-4 py-2 bg-green-600 hover:bg-green-700 rounded-md text-sm font-medium transition">
<i class="fas fa-save mr-2"></i>Save Security Settings
</button>
</div>
</div>
</div>
</div>
<!-- Drivers & Updates Section -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-6">
<!-- Add Drivers Card -->
<div class="bg-gray-800 rounded-lg shadow-md overflow-hidden">
<div class="px-6 py-4 border-b border-gray-700">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-plug mr-2 text-blue-400"></i>
Add Drivers
</h3>
</div>
<div class="p-6">
<div class="mb-4">
<label class="block text-sm font-medium text-gray-300 mb-2">Driver Source</label>
<div class="flex">
<input type="text" class="flex-1 bg-gray-700 border border-gray-600 rounded-l-md px-4 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="C:\path\to\drivers">
<button class="bg-gray-600 hover:bg-gray-500 px-4 py-2 rounded-r-md text-sm font-medium transition">
<i class="fas fa-folder-open"></i>
</button>
</div>
</div>
<div class="h-40 overflow-y-auto custom-scrollbar bg-gray-700 rounded-md p-4 mb-4">
<div class="text-sm text-gray-300">
<div class="flex items-center py-2 border-b border-gray-600">
<i class="fas fa-microchip mr-3 text-blue-400"></i>
<span>Intel Chipset Drivers (v10.1.18.14)</span>
</div>
<div class="flex items-center py-2 border-b border-gray-600">
<i class="fas fa-ethernet mr-3 text-blue-400"></i>
<span>Realtek Network Drivers (v10.50.0.7)</span>
</div>
<div class="flex items-center py-2">
<i class="fas fa-video mr-3 text-blue-400"></i>
<span>NVIDIA Graphics Drivers (v512.95)</span>
</div>
</div>
</div>
<div class="flex space-x-4">
<button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-md text-sm font-medium transition">
<i class="fas fa-plus mr-2"></i>Add Drivers
</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md text-sm font-medium transition">
<i class="fas fa-trash mr-2"></i>Remove Selected
</button>
</div>
</div>
</div>
<!-- Windows Updates Card -->
<div class="bg-gray-800 rounded-lg shadow-md overflow-hidden">
<div class="px-6 py-4 border-b border-gray-700">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-sync mr-2 text-blue-400"></i>
Windows Updates
</h3>
</div>
<div class="p-6">
<div class="mb-4">
<label class="block text-sm font-medium text-gray-300 mb-2">Update Source</label>
<div class="flex space-x-4">
<button class="flex-1 px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md text-sm font-medium transition">
<i class="fas fa-download mr-2"></i>Download Latest
</button>
<button class="flex-1 px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md text-sm font-medium transition">
<i class="fas fa-folder-open mr-2"></i>Local Folder
</button>
</div>
</div>
<div class="h-40 overflow-y-auto custom-scrollbar bg-gray-700 rounded-md p-4 mb-4">
<div class="text-sm text-gray-300">
<div class="flex items-center py-2 border-b border-gray-600">
<i class="fas fa-check-circle mr-3 text-green-400"></i>
<span>KB5015814 - 2022-07 Cumulative Update</span>
</div>
<div class="flex items-center py-2 border-b border-gray-600">
<i class="fas fa-check-circle mr-3 text-green-400"></i>
<span>KB5005565 - Servicing Stack Update</span>
</div>
<div class="flex items-center py-2">
<i class="fas fa-exclamation-triangle mr-3 text-yellow-400"></i>
<span>KB5005039 - Feature Update (Optional)</span>
</div>
</div>
</div>
<div class="flex space-x-4">
<button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-md text-sm font-medium transition">
<i class="fas fa-plus mr-2"></i>Add Update
</button>
<button class="px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md text-sm font-medium transition">
<i class="fas fa-trash mr-2"></i>Remove Selected
</button>
</div>
</div>
</div>
</div>
<!-- Final Actions -->
<div class="bg-gray-800 rounded-lg shadow-md overflow-hidden">
<div class="px-6 py-4 border-b border-gray-700">
<h3 class="text-lg font-medium text-white flex items-center">
<i class="fas fa-rocket mr-2 text-blue-400"></i>
Build & Export
</h3>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
<div>
<label class="block text-sm font-medium text-gray-300 mb-2">Output Format</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded-md px-4 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
<option>ISO Image</option>
<option>WIM File</option>
<option>ESD File</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-300 mb-2">Output Directory</label>
<div class="flex">
<input type="text" class="flex-1 bg-gray-700 border border-gray-600 rounded-l-md px-4 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="C:\output">
<button class="bg-gray-600 hover:bg-gray-500 px-4 py-2 rounded-r-md text-sm font-medium transition">
<i class="fas fa-folder-open"></i>
</button>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-300 mb-2">ISO Label</label>
<input type="text" class="w-full bg-gray-700 border border-gray-600 rounded-md px-4 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Win11_Custom">
</div>
</div>
<div class="flex justify-between items-center">
<div class="flex items-center text-sm text-gray-400">
<i class="fas fa-info-circle mr-2 text-blue-400"></i>
<span>Estimated size: 4.7 GB</span>
</div>
<div class="flex space-x-4">
<button class="px-6 py-2 bg-gray-700 hover:bg-gray-600 rounded-md text-sm font-medium transition">
<i class="fas fa-tasks mr-2"></i>Validate
</button>
<button class="px-6 py-2 bg-green-600 hover:bg-green-700 rounded-md text-sm font-medium transition">
<i class="fas fa-play mr-2"></i>Start Build
</button>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
<!-- Status Bar -->
<footer class="bg-gray-800 border-t border-gray-700 px-4 py-2 flex items-center justify-between text-xs text-gray-400">
<div class="flex items-center space-x-4">
<span><i class="fas fa-circle text-green-500 mr-1"></i> Ready</span>
<span><i class="fas fa-microchip mr-1"></i> DISM API v10.0.22000</span>
</div>
<div>
<span>WinCustomizer v1.0.0</span>
</div>
</footer>
</div>
<script>
// Simple drag and drop functionality for the bloatware list
document.addEventListener('DOMContentLoaded', function() {
const draggableItems = document.querySelectorAll('.draggable-item');
draggableItems.forEach(item => {
item.addEventListener('dragstart', function(e) {
e.dataTransfer.setData('text/plain', this.id);
this.classList.add('opacity-50');
});
item.addEventListener('dragend', function() {
this.classList.remove('opacity-50');
});
});
// Simple toggle for checkboxes
const checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(checkbox => {
checkbox.addEventListener('change', function() {
const parentDiv = this.closest('.flex.items-start');
if (this.checked) {
parentDiv.querySelector('label').classList.add('text-blue-400');
} else {
parentDiv.querySelector('label').classList.remove('text-blue-400');
}
});
});
// Simulate progress bar for demo purposes
const buildButton = document.querySelector('button:contains("Start Build")');
if (buildButton) {
buildButton.addEventListener('click', function() {
alert('Build process started! This is a demo interface. In a real app, this would launch the image customization process.');
});
}
});
</script>
<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=iresolver/wincustomizer" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |