tl2 / products.html
flen-crypto's picture
travelinlite.com
36516e1 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Products | Travelin-Lite LTD</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>
.dropdown:hover .dropdown-menu {
display: block;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.category-card:hover img {
transform: scale(1.05);
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Top Announcement Bar -->
<div class="bg-black text-white text-center py-2 px-4 text-sm">
<p>🚚 Free UK delivery on orders over £150 | ⏰ Same day dispatch before 3pm</p>
</div>
<!-- Header -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4">
<!-- Top Header -->
<div class="flex items-center justify-between py-3 border-b">
<div class="flex items-center space-x-4">
<a href="#" class="text-gray-700 hover:text-blue-600">
<i class="fas fa-phone-alt"></i> 01234 567890
</a>
<a href="#" class="text-gray-700 hover:text-blue-600">
<i class="fas fa-envelope"></i> info@travelinlite.com
</a>
</div>
<div class="flex items-center space-x-4">
<a href="#" class="text-gray-700 hover:text-blue-600">Account</a>
<a href="#" class="text-gray-700 hover:text-blue-600">Wishlist</a>
<div class="relative">
<a href="#" class="text-gray-700 hover:text-blue-600 flex items-center">
<i class="fas fa-shopping-cart"></i>
<span class="ml-1">Cart (0)</span>
</a>
</div>
</div>
</div>
<!-- Main Header -->
<div class="flex items-center justify-between py-4">
<!-- Logo -->
<div class="w-1/4">
<a href="/" class="block">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/t/4/assets/logo.png?v=44385051453033833961657891895"
alt="Travelin-Lite LTD" class="h-16">
</a>
</div>
<!-- Search -->
<div class="w-2/4 px-8">
<div class="relative">
<input type="text" placeholder="Search for parts..."
class="w-full px-4 py-2 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-blue-500">
<button class="absolute right-0 top-0 h-full px-4 text-gray-600 hover:text-blue-600">
<i class="fas fa-search"></i>
</button>
</div>
</div>
<!-- Paypal & Icons -->
<div class="w-1/4 flex justify-end items-center space-x-4">
<a href="#" class="hidden md:block">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/t/4/assets/small-paypal.jpg?v=131092240753959694361608026327"
alt="PayPal Credit" class="h-8">
</a>
<div class="flex space-x-4">
<a href="#" class="text-gray-700 hover:text-blue-600 text-xl">
<i class="far fa-user"></i>
</a>
<a href="#" class="text-gray-700 hover:text-blue-600 text-xl">
<i class="far fa-heart"></i>
</a>
<a href="#" class="text-gray-700 hover:text-blue-600 text-xl relative">
<i class="fas fa-shopping-cart"></i>
<span class="absolute -top-2 -right-2 bg-blue-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">0</span>
</a>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="hidden md:block border-t">
<ul class="flex justify-center space-x-8 py-3">
<li class="dropdown relative group">
<a href="#" class="text-gray-800 hover:text-blue-600 font-medium py-2 flex items-center">
T4 <i class="fas fa-chevron-down ml-1 text-xs"></i>
</a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded-md mt-1 w-48 z-50">
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">T4 Central Locking</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">T4 Lighting</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">T4 Accessories</a>
</div>
</li>
<li class="dropdown relative group">
<a href="#" class="text-gray-800 hover:text-blue-600 font-medium py-2 flex items-center">
T5 <i class="fas fa-chevron-down ml-1 text-xs"></i>
</a>
<div class="dropdown-menu absolute hidden group-hover:block bg-white shadow-lg rounded-md mt-1 w-48 z-50">
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">T5 Rear Styling</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">T5 Exterior Styling</a>
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-gray-100">T5 Front Lighting</a>
</div>
</li>
<li><a href="/products.html" class="text-gray-800 hover:text-blue-600 font-medium py-2">All Products</a></li>
<li><a href="#" class="text-gray-800 hover:text-blue-600 font-medium py-2">Wheels</a></li>
<li><a href="#" class="text-gray-800 hover:text-blue-600 font-medium py-2">Suspension</a></li>
<li><a href="#" class="text-gray-800 hover:text-blue-600 font-medium py-2">Clearance</a></li>
<li><a href="#" class="text-gray-800 hover:text-blue-600 font-medium py-2">Blog</a></li>
</ul>
</nav>
</div>
</header>
<!-- Mobile Menu Button -->
<div class="md:hidden bg-white py-3 px-4 flex justify-between items-center border-b">
<button id="mobile-menu-button" class="text-gray-700">
<i class="fas fa-bars text-xl"></i>
</button>
<a href="/" class="block">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/t/4/assets/logo.png?v=44385051453033833961657891895"
alt="Travelin-Lite LTD" class="h-10">
</a>
<a href="#" class="text-gray-700">
<i class="fas fa-shopping-cart text-xl"></i>
</a>
</div>
<!-- Page Header -->
<div class="bg-white py-8 border-b">
<div class="container mx-auto px-4">
<h1 class="text-3xl font-bold text-gray-900 mb-2">All Products</h1>
<p class="text-gray-600">Browse our complete collection of VW Transporter parts and accessories</p>
</div>
</div>
<!-- Products Section -->
<div class="container mx-auto px-4 py-12">
<div class="flex flex-col lg:flex-row gap-8">
<!-- Filters Sidebar -->
<div class="lg:w-1/4">
<div class="bg-white rounded-lg shadow-sm p-6">
<h3 class="font-bold text-lg mb-4">Filters</h3>
<!-- Vehicle Type -->
<div class="mb-6">
<h4 class="font-medium mb-3">Vehicle Type</h4>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">T4 (90-03)</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">T5 (03-09)</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">T5.1 (10-15)</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">T6 (15-19)</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">T6.1 (19-)</span>
</label>
</div>
</div>
<!-- Category -->
<div class="mb-6">
<h4 class="font-medium mb-3">Category</h4>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">Lighting</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">Suspension</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">Wheels</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">Styling</span>
</label>
</div>
</div>
<!-- Price Range -->
<div class="mb-6">
<h4 class="font-medium mb-3">Price Range</h4>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">Under £50</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">£50 - £100</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">£100 - £200</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
<span class="ml-2 text-gray-700">Over £200</span>
</label>
</div>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md">
Apply Filters
</button>
</div>
</div>
<!-- Products Grid -->
<div class="lg:w-3/4">
<!-- Sort and View Options -->
<div class="flex flex-col sm:flex-row justify-between items-center mb-6">
<p class="text-gray-600 mb-2 sm:mb-0">Showing 12 of 256 products</p>
<div class="flex items-center space-x-4">
<select class="border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
<option>Sort by: Featured</option>
<option>Price: Low to High</option>
<option>Price: High to Low</option>
<option>Newest First</option>
</select>
</div>
</div>
<!-- Products -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Product 1 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition-transform duration-300">
<div class="relative">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/products/image_a0869230-3cd0-4d94-a80f-b7cedccf81e8_large.jpg?v=1597407580"
alt="T5.1 Mystery Box" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-red-600 text-white text-xs font-bold px-2 py-1 rounded">
SALE
</div>
</div>
<div class="p-4">
<h3 class="font-medium text-gray-800 mb-2">T5.1 10-15 mystery box ??? £50 worth of parts for £40</h3>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">£40.00</span>
<span class="text-sm text-gray-500 line-through">£50.00</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md">
Add to Cart
</button>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition-transform duration-300">
<div class="relative">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/products/image_48fe7bd7-1faa-4858-88d4-840b0a8c6f81_large.jpg?v=1750774219"
alt="T6 Tailgate LED lights" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="font-medium text-gray-800 mb-2">T6 Tailgate LED rear lights with dynamic indicator</h3>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">£290.00</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md">
Add to Cart
</button>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition-transform duration-300">
<div class="relative">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/files/FullSizeRender_5ec0a6f7-c208-4538-82f9-4cb1d6f292e3_large.jpg?v=1720533296"
alt="T6.1 DRL Headlights" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="font-medium text-gray-800 mb-2">T6.1 DRL Headlights With Full LED Bulbs (Audi Style)</h3>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">£950.00</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md">
Add to Cart
</button>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition-transform duration-300">
<div class="relative">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/products/image_368cfe95-0578-4d79-b0d1-d0c263e9889d_large.jpg?v=1654078080"
alt="T6.1 Splitter" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="font-medium text-gray-800 mb-2">T6.1 Splitter Gloss Black TL Design 20 Onwards</h3>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">£155.00</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md">
Add to Cart
</button>
</div>
</div>
<!-- Product 5 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition-transform duration-300">
<div class="relative">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/files/IMG_20240612_155926_1_large.jpg?v=1718197930"
alt="T6.1 Rear Spoiler" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="font-medium text-gray-800 mb-2">T6.1 Rear Spoiler Gloss Black TL Design</h3>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">£180.00</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md">
Add to Cart
</button>
</div>
</div>
<!-- Product 6 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition-transform duration-300">
<div class="relative">
<img src="https://travelinlite-transporters.co.uk/cdn/shop/products/image_2f4c4f85-b3f6-4b2b-8f1e-90b8a7b7b6c5_large.jpg?v=1625147890"
alt="T5 LED Headlights" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="font-medium text-gray-800 mb-2">T5 LED Headlights With DRL</h3>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">£650.00</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md">
Add to Cart
</button>
</div>
</div>
</div>
<!-- Pagination -->
<div class="flex justify-center mt-12">
<nav class="flex items-center space-x-2">
<a href="#" class="px-3 py-2 bg-blue-600 text-white rounded-md">1</a>
<a href="#" class="px-3 py-2 bg-white border border-gray-300 rounded-md hover:bg-gray-50">2</a>
<a href="#" class="px-3 py-2 bg-white border border-gray-300 rounded-md hover:bg-gray-50">3</a>
<a href="#" class="px-3 py-2 bg-white border border-gray-300 rounded-md hover:bg-gray-50">4</a>
<a href="#" class="px-3 py-2 bg-white border border-gray-300 rounded-md hover:bg-gray-50">Next</a>
</nav>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-12 pb-6">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-8">
<!-- Information -->
<div>
<h3 class="font-bold text-lg mb-4">Information</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Returns Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
</ul>
</div>
<!-- Customer Service -->
<div>
<h3 class="font-bold text-lg mb-4">Customer Service</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Shipping Info</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Track Order</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Size Guide</a></li>
</ul>
</div>
<!-- Categories -->
<div>
<h3 class="font-bold text-lg mb-4">Categories</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">T4 Transporter</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">T5 Transporter</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">T6 Transporter</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Wheel Packages</a></li>
</ul>
</div>
<!-- Newsletter -->
<div>
<h3 class="font-bold text-lg mb-4">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe for updates and special offers</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-800 text-white rounded-l-md focus:outline-none w-full">
<button type="submit" class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-r-md">
<i class="fas fa-paper-plane"></i>
</button>
</form>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<!-- Payment Methods -->
<div class="flex flex-wrap justify-center gap-4 mb-6">
<img src="https://cdn.shopify.com/s/files/1/1774/9481/t/2/assets/footer_cards.png?97" alt="Payment Methods" class="h-8">
</div>
<!-- Copyright -->
<div class="border-t border-gray-800 pt-6 text-center text-gray-400">
<p>&copy; 2023 Travelin-Lite LTD. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Dropdown menus for mobile
document.querySelectorAll('#mobile-menu li > a').forEach(item => {
if (item.nextElementSibling && item.nextElementSibling.tagName === 'UL') {
item.addEventListener('click', function(e) {
e.preventDefault();
this.nextElementSibling.classList.toggle('hidden');
});
}
});
</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=flen-crypto/tl2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>