File size: 36,737 Bytes
211ce74 |
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 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FixIT-On-Demand - Mobile App UI</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>
/* Custom CSS for specific elements */
.progress-bar {
height: 8px;
border-radius: 4px;
background-color: #e5e7eb;
}
.progress-fill {
height: 100%;
border-radius: 4px;
background-color: #3b82f6;
width: 25%;
transition: width 0.3s ease;
}
.skill-badge {
display: inline-block;
padding: 2px 8px;
border-radius: 12px;
font-size: 12px;
margin-right: 6px;
margin-bottom: 6px;
}
.problem-card {
transition: all 0.2s ease;
}
.problem-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.slider-thumb::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 24px;
height: 24px;
border-radius: 50%;
background: #3b82f6;
cursor: pointer;
}
.map-container {
height: 200px;
background-color: #e5e7eb;
border-radius: 12px;
position: relative;
overflow: hidden;
}
.map-placeholder {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
}
.rating-star {
color: #e5e7eb;
}
.rating-star.active {
color: #f59e0b;
}
.chat-bubble {
max-width: 80%;
padding: 10px 14px;
border-radius: 18px;
margin-bottom: 8px;
}
.chat-bubble.customer {
background-color: #3b82f6;
color: white;
align-self: flex-end;
}
.chat-bubble.tech {
background-color: #e5e7eb;
color: #1f2937;
align-self: flex-start;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Mobile App Container -->
<div class="max-w-md mx-auto bg-white shadow-lg rounded-2xl overflow-hidden min-h-screen">
<!-- App Header -->
<header class="bg-blue-600 text-white p-4 flex items-center justify-between">
<button class="text-white">
<i class="fas fa-bars"></i>
</button>
<h1 class="text-xl font-bold">FixIT-On-Demand</h1>
<button class="text-white">
<i class="fas fa-user-circle"></i>
</button>
</header>
<!-- Main Content Area -->
<main class="p-4">
<!-- Step 1: Onboarding & Trust Signals -->
<section id="onboarding" class="mb-8">
<h2 class="text-xl font-semibold mb-4 text-gray-800">Get Started in Seconds</h2>
<div class="bg-blue-50 p-4 rounded-lg mb-4">
<div class="flex items-center mb-3">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-user-plus text-blue-600"></i>
</div>
<div>
<h3 class="font-medium">Quick Registration</h3>
<p class="text-sm text-gray-600">Sign up with phone or email in under 30 seconds</p>
</div>
</div>
<div class="flex items-center">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-shield-alt text-blue-600"></i>
</div>
<div>
<h3 class="font-medium">Verified Technicians</h3>
<p class="text-sm text-gray-600">All technicians are background-checked and certified</p>
</div>
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<h3 class="font-medium mb-2">Sample Technician Profile</h3>
<div class="flex items-center mb-3">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Technician" class="w-12 h-12 rounded-full mr-3">
<div>
<h4 class="font-medium">Alex Johnson</h4>
<div class="flex items-center">
<div class="flex mr-2">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<span class="text-sm text-gray-600">4.8 (127 reviews)</span>
</div>
</div>
</div>
<div class="mb-3">
<span class="skill-badge bg-blue-100 text-blue-800">Hardware Specialist</span>
<span class="skill-badge bg-green-100 text-green-800">Network Guru</span>
<span class="skill-badge bg-purple-100 text-purple-800">MacOS Expert</span>
</div>
<p class="text-sm text-gray-600 mb-3">"Alex fixed my laptop in under an hour when no one else could figure out the problem. Highly recommended!"</p>
<div class="flex justify-between items-center">
<div class="text-sm">
<span class="text-gray-600">Response time:</span>
<span class="font-medium">15 min avg</span>
</div>
<button class="bg-blue-600 text-white px-3 py-1 rounded-full text-sm">
View Profile
</button>
</div>
</div>
</section>
<!-- Step 2: Problem Definition -->
<section id="problem-definition" class="mb-8">
<h2 class="text-xl font-semibold mb-4 text-gray-800">What's the issue?</h2>
<div class="grid grid-cols-2 gap-3 mb-4">
<div class="problem-card bg-white p-4 rounded-lg shadow-sm border border-gray-100 text-center cursor-pointer hover:border-blue-200">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2">
<i class="fas fa-laptop text-blue-600 text-xl"></i>
</div>
<h3 class="font-medium text-sm">Slow PC</h3>
</div>
<div class="problem-card bg-white p-4 rounded-lg shadow-sm border border-gray-100 text-center cursor-pointer hover:border-blue-200">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2">
<i class="fas fa-exclamation-triangle text-blue-600 text-xl"></i>
</div>
<h3 class="font-medium text-sm">Blue Screen</h3>
</div>
<div class="problem-card bg-white p-4 rounded-lg shadow-sm border border-gray-100 text-center cursor-pointer hover:border-blue-200">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2">
<i class="fas fa-download text-blue-600 text-xl"></i>
</div>
<h3 class="font-medium text-sm">Software Install</h3>
</div>
<div class="problem-card bg-white p-4 rounded-lg shadow-sm border border-gray-100 text-center cursor-pointer hover:border-blue-200">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2">
<i class="fas fa-wifi text-blue-600 text-xl"></i>
</div>
<h3 class="font-medium text-sm">Wi-Fi Setup</h3>
</div>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Or describe your issue</label>
<textarea class="w-full p-3 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" rows="2" placeholder="E.g. 'My printer won't connect to my new laptop'"></textarea>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<h3 class="font-medium mb-3">How urgent is your issue?</h3>
<div class="flex items-center justify-between mb-2">
<span class="text-sm font-medium">Standard</span>
<span class="text-sm font-medium">Urgent</span>
</div>
<input type="range" min="0" max="100" value="50" class="w-full slider-thumb">
<div class="mt-4 flex justify-between">
<div>
<div class="text-sm text-gray-600">ETA</div>
<div class="font-medium">1-2 hours</div>
</div>
<div>
<div class="text-sm text-gray-600">Price</div>
<div class="font-medium">$49 base</div>
</div>
</div>
</div>
</section>
<!-- Step 3: Matching & Pricing -->
<section id="matching-pricing" class="mb-8">
<h2 class="text-xl font-semibold mb-4 text-gray-800">Available Technicians</h2>
<div class="bg-yellow-50 border border-yellow-200 rounded-lg p-3 mb-4 flex items-start">
<i class="fas fa-exclamation-circle text-yellow-500 mt-1 mr-2"></i>
<div>
<h3 class="font-medium text-yellow-800">High Demand Notice</h3>
<p class="text-sm text-yellow-700">Due to high demand between 6-9 PM, prices are currently +25%</p>
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 mb-4">
<div class="flex items-center justify-between mb-3">
<h3 class="font-medium">Best Match</h3>
<span class="text-sm bg-green-100 text-green-800 px-2 py-1 rounded-full">Available Now</span>
</div>
<div class="flex items-center mb-3">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Technician" class="w-12 h-12 rounded-full mr-3">
<div class="flex-1">
<h4 class="font-medium">Sarah Miller</h4>
<div class="flex items-center">
<div class="flex mr-2">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<span class="text-sm text-gray-600">4.9 (86 reviews)</span>
</div>
</div>
<div class="text-right">
<div class="font-medium text-blue-600">$61</div>
<div class="text-sm text-gray-600">ETA: 45 min</div>
</div>
</div>
<div class="flex justify-between text-sm mb-3">
<span class="text-gray-600">Distance: 1.2 miles</span>
<span class="text-gray-600">Specializes in: Laptops, Software</span>
</div>
<div class="progress-bar">
<div class="progress-fill"></div>
</div>
<div class="text-xs text-gray-500 mt-1">Matching score: 98%</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex items-center justify-between mb-3">
<h3 class="font-medium">Other Options</h3>
<span class="text-sm bg-blue-100 text-blue-800 px-2 py-1 rounded-full">2 Available</span>
</div>
<div class="flex items-center mb-3">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Technician" class="w-10 h-10 rounded-full mr-3">
<div class="flex-1">
<h4 class="font-medium">James Wilson</h4>
<div class="flex items-center">
<div class="flex mr-2">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star-half-alt text-yellow-400"></i>
</div>
<span class="text-sm text-gray-600">4.7 (203 reviews)</span>
</div>
</div>
<div class="text-right">
<div class="font-medium text-blue-600">$55</div>
<div class="text-sm text-gray-600">ETA: 1h 15m</div>
</div>
</div>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/12.jpg" alt="Technician" class="w-10 h-10 rounded-full mr-3">
<div class="flex-1">
<h4 class="font-medium">Michael Brown</h4>
<div class="flex items-center">
<div class="flex mr-2">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<span class="text-sm text-gray-600">4.8 (156 reviews)</span>
</div>
</div>
<div class="text-right">
<div class="font-medium text-blue-600">$58</div>
<div class="text-sm text-gray-600">ETA: 1h 30m</div>
</div>
</div>
</div>
</section>
<!-- Step 4: Confirmation -->
<section id="confirmation" class="mb-8">
<h2 class="text-xl font-semibold mb-4 text-gray-800">Confirm Your Booking</h2>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 mb-4">
<h3 class="font-medium mb-3">Service Summary</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Service Type:</span>
<span class="font-medium">Laptop Repair - Slow Performance</span>
</div>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Technician:</span>
<span class="font-medium">Sarah Miller</span>
</div>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Urgency:</span>
<span class="font-medium">Standard</span>
</div>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Location:</span>
<span class="font-medium">123 Main St, Apt 4B</span>
</div>
<div class="border-t border-gray-200 my-3"></div>
<h3 class="font-medium mb-2">Price Breakdown</h3>
<div class="flex justify-between mb-1">
<span class="text-gray-600">Base Fee</span>
<span>$49.00</span>
</div>
<div class="flex justify-between mb-1">
<span class="text-gray-600">Surge Pricing</span>
<span>$12.25</span>
</div>
<div class="flex justify-between mb-1">
<span class="text-gray-600">Estimated Time (1h)</span>
<span>$25.00</span>
</div>
<div class="border-t border-gray-200 my-2"></div>
<div class="flex justify-between font-medium">
<span>Total</span>
<span>$86.25</span>
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 mb-4">
<h3 class="font-medium mb-3">Technician Location</h3>
<div class="map-container">
<div class="map-placeholder">
<div class="text-center">
<i class="fas fa-map-marker-alt text-3xl mb-2"></i>
<p>Technician is 1.2 miles away</p>
<p class="text-sm">ETA: 45 minutes</p>
</div>
</div>
</div>
</div>
<button class="w-full bg-blue-600 text-white py-3 rounded-lg font-medium hover:bg-blue-700 transition">
Confirm Booking ($86.25)
</button>
</section>
<!-- Step 5: Communication & Diagnostics -->
<section id="communication" class="mb-8">
<h2 class="text-xl font-semibold mb-4 text-gray-800">In-App Communication</h2>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 mb-4">
<div class="flex items-center justify-between mb-4">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Technician" class="w-10 h-10 rounded-full mr-3">
<div>
<h3 class="font-medium">Sarah Miller</h3>
<div class="text-sm text-gray-600">En route - ETA 15 min</div>
</div>
</div>
<div class="flex">
<button class="w-10 h-10 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mr-2">
<i class="fas fa-phone"></i>
</button>
<button class="w-10 h-10 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center">
<i class="fas fa-video"></i>
</button>
</div>
</div>
<div class="flex flex-col mb-4" style="height: 200px; overflow-y: auto;">
<div class="chat-bubble customer">
Hi Sarah, my laptop is the silver Dell on the kitchen table
</div>
<div class="chat-bubble tech">
Got it! I'll be there in about 15 minutes. Is there a parking spot I should know about?
</div>
<div class="chat-bubble customer">
Yes, there's visitor parking in front of building 3
</div>
<div class="chat-bubble tech">
Perfect, see you soon!
</div>
</div>
<div class="flex">
<input type="text" placeholder="Type a message..." class="flex-1 p-3 border border-gray-300 rounded-l-lg focus:ring-blue-500 focus:border-blue-500">
<button class="bg-blue-600 text-white px-4 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<h3 class="font-medium mb-3">Remote Diagnostics</h3>
<p class="text-sm text-gray-600 mb-4">Many issues can be diagnosed remotely to save time. Would you like to start a remote session now?</p>
<div class="flex justify-between">
<button class="flex-1 bg-blue-600 text-white py-2 rounded-lg mr-2 flex items-center justify-center">
<i class="fas fa-video mr-2"></i> Start Video Call
</button>
<button class="flex-1 bg-gray-100 text-gray-800 py-2 rounded-lg flex items-center justify-center">
<i class="fas fa-share-square mr-2"></i> Share Screen
</button>
</div>
</div>
</section>
<!-- Step 6: Job Tracking -->
<section id="job-tracking" class="mb-8">
<h2 class="text-xl font-semibold mb-4 text-gray-800">Job Progress</h2>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 mb-4">
<div class="flex justify-between mb-4">
<div class="flex items-center">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-user-cog text-blue-600"></i>
</div>
<div>
<h3 class="font-medium">Sarah Miller</h3>
<div class="text-sm text-gray-600">Hardware Specialist</div>
</div>
</div>
<div class="text-right">
<div class="text-sm text-gray-600">Time spent</div>
<div class="font-medium">45 min</div>
</div>
</div>
<div class="space-y-4 mb-4">
<div class="flex items-start">
<div class="w-8 h-8 bg-green-100 rounded-full flex items-center justify-center mr-3 mt-1">
<i class="fas fa-check text-green-600"></i>
</div>
<div>
<h4 class="font-medium">Technician En Route</h4>
<p class="text-sm text-gray-600">Arrived at 3:15 PM</p>
</div>
</div>
<div class="flex items-start">
<div class="w-8 h-8 bg-green-100 rounded-full flex items-center justify-center mr-3 mt-1">
<i class="fas fa-check text-green-600"></i>
</div>
<div>
<h4 class="font-medium">On-Site Inspection</h4>
<p class="text-sm text-gray-600">Diagnosed slow HDD</p>
</div>
</div>
<div class="flex items-start">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center mr-3 mt-1">
<i class="fas fa-cog text-blue-600 animate-spin"></i>
</div>
<div>
<h4 class="font-medium">Repair in Progress</h4>
<p class="text-sm text-gray-600">Replacing with SSD</p>
</div>
</div>
<div class="flex items-start">
<div class="w-8 h-8 bg-gray-100 rounded-full flex items-center justify-center mr-3 mt-1">
<i class="fas fa-ellipsis-h text-gray-400"></i>
</div>
<div>
<h4 class="font-medium text-gray-400">Job Completed</h4>
</div>
</div>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 75%;"></div>
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<h3 class="font-medium mb-3">Digital Receipt Preview</h3>
<div class="border border-gray-200 rounded-lg p-3 mb-3">
<div class="flex justify-between mb-2">
<span class="text-gray-600">Service:</span>
<span>Dell Inspiron SSD Upgrade</span>
</div>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Parts:</span>
<span>500GB Samsung SSD</span>
</div>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Labor:</span>
<span>45 minutes</span>
</div>
<div class="border-t border-gray-200 my-2"></div>
<div class="flex justify-between font-medium">
<span>Total:</span>
<span>$149.99</span>
</div>
</div>
<button class="w-full bg-gray-100 text-gray-800 py-2 rounded-lg font-medium hover:bg-gray-200 transition">
View Full Receipt
</button>
</div>
</section>
<!-- Step 7: Payment & Feedback -->
<section id="payment-feedback">
<h2 class="text-xl font-semibold mb-4 text-gray-800">Payment & Feedback</h2>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 mb-4">
<h3 class="font-medium mb-3">Payment Method</h3>
<div class="flex items-center justify-between p-3 border border-gray-200 rounded-lg mb-3">
<div class="flex items-center">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
<i class="fab fa-cc-visa text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Visa •••• 4242</h4>
<p class="text-sm text-gray-600">Expires 05/25</p>
</div>
</div>
<i class="fas fa-check-circle text-green-500"></i>
</div>
<div class="flex items-center justify-between p-3 border border-gray-200 rounded-lg mb-3">
<div class="flex items-center">
<div class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center mr-3">
<i class="fab fa-paypal text-blue-500"></i>
</div>
<div>
<h4 class="font-medium">PayPal</h4>
<p class="text-sm text-gray-600">user@example.com</p>
</div>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<button class="w-full bg-gray-100 text-gray-800 py-2 rounded-lg font-medium hover:bg-gray-200 transition">
<i class="fas fa-plus mr-2"></i> Add Payment Method
</button>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<h3 class="font-medium mb-3">Rate Your Experience</h3>
<p class="text-sm text-gray-600 mb-4">How would you rate Sarah's service?</p>
<div class="flex justify-center mb-4">
<div class="rating-star text-3xl mr-2 active">★</div>
<div class="rating-star text-3xl mr-2 active">★</div>
<div class="rating-star text-3xl mr-2 active">★</div>
<div class="rating-star text-3xl mr-2 active">★</div>
<div class="rating-star text-3xl">★</div>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Leave a comment (optional)</label>
<textarea class="w-full p-3 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" rows="3" placeholder="What did you like about the service?"></textarea>
</div>
<button class="w-full bg-blue-600 text-white py-3 rounded-lg font-medium hover:bg-blue-700 transition">
Submit Review & Pay $149.99
</button>
</div>
</section>
</main>
<!-- Bottom Navigation -->
<nav class="bg-white border-t border-gray-200 fixed bottom-0 w-full max-w-md">
<div class="flex justify-around">
<a href="#" class="flex flex-col items-center py-2 px-4 text-blue-600">
<i class="fas fa-home"></i>
<span class="text-xs mt-1">Home</span>
</a>
<a href="#" class="flex flex-col items-center py-2 px-4 text-gray-500">
<i class="fas fa-search"></i>
<span class="text-xs mt-1">Search</span>
</a>
<a href="#" class="flex flex-col items-center py-2 px-4 text-gray-500">
<i class="fas fa-calendar-alt"></i>
<span class="text-xs mt-1">Bookings</span>
</a>
<a href="#" class="flex flex-col items-center py-2 px-4 text-gray-500">
<i class="fas fa-user"></i>
<span class="text-xs mt-1">Profile</span>
</a>
</div>
</nav>
</div>
<script>
// Simple JavaScript for interactive elements
document.addEventListener('DOMContentLoaded', function() {
// Rating stars interaction
const stars = document.querySelectorAll('.rating-star');
stars.forEach((star, index) => {
star.addEventListener('click', () => {
stars.forEach((s, i) => {
if (i <= index) {
s.classList.add('active');
} else {
s.classList.remove('active');
}
});
});
});
// Problem card selection
const problemCards = document.querySelectorAll('.problem-card');
problemCards.forEach(card => {
card.addEventListener('click', () => {
problemCards.forEach(c => c.classList.remove('border-blue-500', 'bg-blue-50'));
card.classList.add('border-blue-500', 'bg-blue-50');
});
});
// Slider interaction
const slider = document.querySelector('input[type="range"]');
if (slider) {
slider.addEventListener('input', function() {
const value = this.value;
const urgent = value > 50;
// Update ETA and price based on urgency
const etaElement = document.querySelector('#problem-definition .font-medium:first-child');
const priceElement = document.querySelector('#problem-definition .font-medium:last-child');
if (urgent) {
if (etaElement) etaElement.textContent = '30-45 min';
if (priceElement) priceElement.textContent = '$69 base';
} else {
if (etaElement) etaElement.textContent = '1-2 hours';
if (priceElement) priceElement.textContent = '$49 base';
}
});
}
});
</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=LukasBe/fixit" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |