weedshop / index.html
defaultdolphin's picture
undefined - Initial Deployment
220581b verified
Raw
History Blame Contribute Delete
37.7 kB
<!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>