Spaces:
Running
Running
File size: 37,724 Bytes
220581b | 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 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Best Same Day Weed Delivery in California | Smokeland</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 = {
theme: {
extend: {
colors: {
primary: '#008a00',
secondary: '#00c853',
accent: '#ff6d00',
dark: '#1a202c',
light: '#f7fafc'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f0fdf4;
}
.hero-gradient {
background: linear-gradient(135deg, #008a00 0%, #00c853 100%);
}
.product-card {
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.category-card {
transition: all 0.3s ease;
border: 2px solid transparent;
}
.category-card:hover {
border-color: #008a00;
background-color: #f0fdf4;
}
.badge {
position: absolute;
top: 10px;
right: 10px;
background-color: #ff6d00;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
}
.discount-badge {
position: absolute;
top: 10px;
left: 10px;
background-color: #ff0000;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
}
.new-badge {
position: absolute;
top: 10px;
left: 10px;
background-color: #00c853;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
}
.strain-tag {
position: absolute;
bottom: 10px;
left: 10px;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 0.75rem;
}
.cart-btn {
background-color: #008a00;
color: white;
transition: all 0.3s ease;
}
.cart-btn:hover {
background-color: #006a00;
}
.delivery-option {
border: 2px solid #008a00;
border-radius: 12px;
transition: all 0.3s ease;
}
.delivery-option:hover {
background-color: #f0fdf4;
transform: translateY(-3px);
}
.banner-card {
transition: all 0.3s ease;
}
.banner-card:hover {
transform: scale(1.02);
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
</head>
<body class="bg-green-50">
<!-- Header -->
<header class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center">
<button class="lg:hidden mr-3 text-gray-600">
<i class="fas fa-bars text-2xl"></i>
</button>
<a href="#" class="flex items-center">
<img src="https://smokeland.com/_next/image?url=%2Fsmokeland_full_green.png&w=828&q=75" alt="Smokeland Logo" class="h-10">
</a>
</div>
<div class="hidden lg:flex space-x-6">
<a href="#" class="text-gray-700 hover:text-green-600 font-medium">Shop</a>
<a href="#" class="text-gray-700 hover:text-green-600 font-medium">Deals</a>
<a href="#" class="text-gray-700 hover:text-green-600 font-medium">Brands</a>
<a href="#" class="text-gray-700 hover:text-green-600 font-medium">News</a>
<a href="#" class="text-gray-700 hover:text-green-600 font-medium">Locations</a>
</div>
<div class="flex items-center space-x-4">
<div class="relative">
<button class="text-gray-600">
<i class="fas fa-search text-xl"></i>
</button>
</div>
<div class="relative">
<button class="text-gray-600 relative">
<i class="fas fa-shopping-cart text-xl"></i>
<span class="absolute -top-2 -right-2 bg-green-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">0</span>
</button>
</div>
<button class="bg-green-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-green-700 transition">
Sign In
</button>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient text-white py-16">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">The Best Same Day Weed Delivery in California</h1>
<p class="text-xl mb-8">Fast, reliable, and discreet delivery right to your door</p>
<div class="bg-white rounded-xl p-6 shadow-lg max-w-2xl mx-auto">
<div class="flex flex-col md:flex-row gap-4">
<div class="flex-1">
<input type="text" placeholder="Enter your address" class="w-full px-4 py-3 rounded-lg border border-gray-300 text-gray-800 focus:outline-none focus:ring-2 focus:ring-green-500">
</div>
<button class="bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-6 rounded-lg transition">
Find Delivery
</button>
</div>
</div>
<div class="mt-8 flex flex-col sm:flex-row justify-center gap-4">
<div class="delivery-option p-4 bg-white bg-opacity-10 backdrop-blur-sm">
<h3 class="font-bold text-lg">On Demand</h3>
<p class="text-sm">45-120 minutes</p>
</div>
<div class="delivery-option p-4 bg-white bg-opacity-10 backdrop-blur-sm">
<h3 class="font-bold text-lg">Full Menu</h3>
<p class="text-sm">Delivery by appointment</p>
</div>
</div>
</div>
</div>
</section>
<!-- Categories Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Shop By Category</h2>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-8 gap-4">
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">Combo Deals</span>
</a>
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">On Sale</span>
</a>
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">Value Menu</span>
</a>
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">Flowers</span>
</a>
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">Pre-roll</span>
</a>
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">Vape Pens</span>
</a>
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">Concentrates</span>
</a>
<a href="#" class="category-card p-4 rounded-lg text-center bg-gray-50">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-3"></div>
<span class="font-medium text-gray-700">$49 Ounce</span>
</a>
</div>
<div class="mt-12 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<a href="#" class="banner-card relative rounded-xl overflow-hidden">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
<h3 class="text-white font-bold text-xl">Combo Deals</h3>
<p class="text-white">Mix and match for great savings</p>
</div>
</a>
<a href="#" class="banner-card relative rounded-xl overflow-hidden">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
<h3 class="text-white font-bold text-xl">On Sale</h3>
<p class="text-white">Unbeatable deals</p>
</div>
</a>
<a href="#" class="banner-card relative rounded-xl overflow-hidden">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
<h3 class="text-white font-bold text-xl">Value Menu</h3>
<p class="text-white">Best prices</p>
</div>
</a>
<a href="#" class="banner-card relative rounded-xl overflow-hidden">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
<h3 class="text-white font-bold text-xl">Flowers</h3>
<p class="text-white">Premium quality</p>
</div>
</a>
</div>
</div>
</section>
<!-- Fresh Drops Section -->
<section class="py-12 bg-green-50">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-gray-800">Fresh Drops</h2>
<a href="#" class="text-green-600 font-medium hover:underline">View all (33)</a>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Product 1 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="strain-tag">Sativa</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Sierra Hills Smalls - Green Jolly Rancher (S) - 28g</h3>
<p class="text-gray-600 text-sm">Sierra Hills</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">36% Cannabinoids</span>
<p class="text-red-600 font-bold">29% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-xl font-bold text-gray-800">$69.00</span>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="strain-tag">Indica</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Sierra Hills Smalls - Drew Berrymore (I) - 28g</h3>
<p class="text-gray-600 text-sm">Sierra Hills</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">33% Cannabinoids</span>
<p class="text-red-600 font-bold">29% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-xl font-bold text-gray-800">$69.00</span>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="strain-tag">Indica</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Sierra Hills - Marathon OG (I) - 28g</h3>
<p class="text-gray-600 text-sm">Sierra Hills</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">35% Cannabinoids</span>
<p class="text-red-600 font-bold">31% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-xl font-bold text-gray-800">$88.00</span>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="strain-tag">Sativa</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Exotix - Candyland (S) - 14g</h3>
<p class="text-gray-600 text-sm">Smoakland</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">36% Cannabinoids</span>
<p class="text-red-600 font-bold">29% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-xl font-bold text-gray-800">$59.99</span>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Combo Deals Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-gray-800">Combo Deals</h2>
<a href="#" class="text-green-600 font-medium hover:underline">View all (3)</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Deal 1 -->
<div class="product-card bg-white rounded-xl overflow-hidden">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="font-bold text-gray-800">Festival Land</h3>
<span class="text-green-600 font-bold">Save $78</span>
</div>
<p class="text-gray-600 mb-4">1/2 OZ Exotix, 1/2OZ Black, 2 Feels</p>
<div class="flex justify-between items-center">
<div>
<span class="text-xl font-bold text-gray-800">$122.00</span>
<span class="text-gray-500 line-through ml-2">$200.00</span>
</div>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Deal 2 -->
<div class="product-card bg-white rounded-xl overflow-hidden">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="font-bold text-gray-800">Fade To Black</h3>
<span class="text-green-600 font-bold">Save $48</span>
</div>
<p class="text-gray-600 mb-4">1 OZ Black Jar, 2 Faderz</p>
<div class="flex justify-between items-center">
<div>
<span class="text-xl font-bold text-gray-800">$122.00</span>
<span class="text-gray-500 line-through ml-2">$170.00</span>
</div>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Deal 3 -->
<div class="product-card bg-white rounded-xl overflow-hidden">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="font-bold text-gray-800">Power Pack Combo</h3>
<span class="text-green-600 font-bold">Save $29</span>
</div>
<p class="text-gray-600 mb-4">1/2 OZ Black, 1/2OZ Exotix</p>
<div class="flex justify-between items-center">
<div>
<span class="text-xl font-bold text-gray-800">$99.00</span>
<span class="text-gray-500 line-through ml-2">$128.00</span>
</div>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- On Sale Section -->
<section class="py-12 bg-green-50">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-gray-800">On Sale</h2>
<a href="#" class="text-green-600 font-medium hover:underline">View all (147)</a>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Sale Product 1 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="discount-badge">17% Off</div>
<div class="strain-tag">Hybrid</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Faderz - Strawberry Diesel (H) - 1g</h3>
<p class="text-gray-600 text-sm">Smoakland</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">78% Cannabinoids</span>
<p class="text-red-600 font-bold">73% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<div>
<span class="text-xl font-bold text-gray-800">$12.50</span>
<span class="text-gray-500 line-through ml-2">$15.00</span>
</div>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Sale Product 2 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="discount-badge">13% Off</div>
<div class="strain-tag">Hybrid</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Sierra Hills - Wedding Cake (H) - 28g</h3>
<p class="text-gray-600 text-sm">Sierra Hills</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">29% Cannabinoids</span>
<p class="text-red-600 font-bold">26% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<div>
<span class="text-xl font-bold text-gray-800">$77.00</span>
<span class="text-gray-500 line-through ml-2">$88.00</span>
</div>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Sale Product 3 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="discount-badge">7% Off</div>
<div class="strain-tag">Hybrid</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Exotix - Animal Cookies (H) - 14g</h3>
<p class="text-gray-600 text-sm">Smoakland</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">30% Cannabinoids</span>
<p class="text-red-600 font-bold">26% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<div>
<span class="text-xl font-bold text-gray-800">$55.00</span>
<span class="text-gray-500 line-through ml-2">$59.00</span>
</div>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
<!-- Sale Product 4 -->
<div class="product-card bg-white rounded-xl overflow-hidden relative">
<div class="new-badge">New</div>
<div class="discount-badge">15% Off</div>
<div class="strain-tag">Indica</div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-48"></div>
<div class="p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-gray-800">Si Señor - Tostilocos (I) - 28g</h3>
<p class="text-gray-600 text-sm">Si Señor</p>
</div>
<div class="text-right">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">25% Cannabinoids</span>
<p class="text-red-600 font-bold">22% THC</p>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<div>
<span class="text-xl font-bold text-gray-800">$75.00</span>
<span class="text-gray-500 line-through ml-2">$88.00</span>
</div>
<button class="cart-btn px-4 py-2 rounded-lg font-medium">
<i class="fas fa-plus mr-1"></i> Add
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Brands Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Our Brands</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Brand 1 -->
<div class="text-center">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-32 h-32 mx-auto mb-4"></div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-40 mx-auto mb-4"></div>
<a href="#" class="text-green-600 font-bold hover:underline">Shop Smoakland</a>
</div>
<!-- Brand 2 -->
<div class="text-center">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-32 h-32 mx-auto mb-4"></div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-40 mx-auto mb-4"></div>
<a href="#" class="text-green-600 font-bold hover:underline">Shop Super J</a>
</div>
<!-- Brand 3 -->
<div class="text-center">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-32 h-32 mx-auto mb-4"></div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-40 mx-auto mb-4"></div>
<a href="#" class="text-green-600 font-bold hover:underline">Shop Feels</a>
</div>
<!-- Brand 4 -->
<div class="text-center">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-32 h-32 mx-auto mb-4"></div>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-40 mx-auto mb-4"></div>
<a href="#" class="text-green-600 font-bold hover:underline">Shop Sway</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12">
<div>
<h3 class="text-xl font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Shop</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Rewards Program</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Earn $25</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">News</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Delivery Locations</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">FAQs</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Jobs</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Prop 65 Warning</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Locations & Hours</h3>
<div class="space-y-4">
<div>
<h4 class="font-bold">SF Bay Area</h4>
<p>2537 Willow Street, Oakland CA 94607</p>
<p>Open Every Day 9:00AM to 9:00PM</p>
</div>
<div>
<h4 class="font-bold">Sacramento</h4>
<p>2544 Albatross Way, Sacramento, CA 95815</p>
<p>Open Every Day 9:00AM to 9:30PM</p>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Customer Support</h3>
<p class="mb-4">contact@smokeland.com</p>
<p class="mb-4">For any inquiries, please don't hesitate to contact us. Our team is available to assist you during our standard business hours between 6:30AM - 10:00PM PST</p>
<div class="flex space-x-4">
<a href="#" class="bg-gray-800 p-3 rounded-lg hover:bg-gray-700">
<i class="fab fa-apple text-xl"></i>
</a>
<a href="#" class="bg-gray-800 p-3 rounded-lg hover:bg-gray-700">
<i class="fab fa-google-play text-xl"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-400">
<p>©2025 Smokeland. All rights reserved. Lic. # C9-0000075-LIC, C9-0000655-LIC, C9-0000174-LIC</p>
<div class="mt-4">
<img src="https://smokeland.com/EBX_BestOf_Winner_Icons_2024_SILVER_1b.png" alt="Best of East Bay Express 2024 Badge" class="h-16 mx-auto">
</div>
</div>
</div>
</footer>
<!-- Mobile Navigation -->
<div class="lg:hidden fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200 py-3 px-4 flex justify-around z-50">
<a href="#" class="text-center text-green-600">
<i class="fas fa-home text-xl"></i>
<p class="text-xs mt-1">Home</p>
</a>
<a href="#" class="text-center text-gray-500">
<i class="fas fa-search text-xl"></i>
<p class="text-xs mt-1">Search</p>
</a>
<a href="#" class="text-center text-gray-500">
<i class="fas fa-shopping-cart text-xl"></i>
<p class="text-xs mt-1">Cart</p>
</a>
<a href="#" class="text-center text-gray-500">
<i class="fas fa-user text-xl"></i>
<p class="text-xs mt-1">Account</p>
</a>
</div>
<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=defaultdolphin/weedshop" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |