itemdd / products.html
uwws's picture
ต้องการทำเว็บไซต์บริษัท โดยนำข้อมูลจากเว็บไซต์เดิม คือ www.itemdd.com มาดัดแปลง ร่วมกันกับ เว็บไซต์ต้นแบบ คือ https://www.mc.co.th/eshop/ ต้องการหน้าหลัก และ หน้าอื่นๆ ครบถ้วนตามมาตรฐานเว็บไซต์ด้าน Audio Visual System Integrator และ Distributor ทั่วโลก ขอธีมสีเป็นโทนเขียว - Initial Deployment
d91a287 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products - ITEMDD</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#2E7D32',
secondary: '#81C784',
accent: '#4CAF50',
dark: '#1B5E20',
light: '#C8E6C9'
}
}
}
}
</script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.nav-link:hover {
color: #81C784;
}
.category-btn.active {
background-color: #2E7D32;
color: white;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center">
<a href="index.html" class="text-2xl font-bold text-primary">ITEMDD</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="index.html" class="nav-link text-gray-800 hover:text-primary transition">Home</a>
<a href="products.html" class="nav-link text-primary font-medium transition">Products</a>
<a href="solutions.html" class="nav-link text-gray-800 hover:text-primary transition">Solutions</a>
<a href="projects.html" class="nav-link text-gray-800 hover:text-primary transition">Projects</a>
<a href="about.html" class="nav-link text-gray-800 hover:text-primary transition">About Us</a>
<a href="contact.html" class="nav-link text-gray-800 hover:text-primary transition">Contact</a>
</div>
<div class="md:hidden">
<button class="text-gray-800 focus:outline-none">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Products Header -->
<section class="bg-primary text-white py-20">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4" data-aos="fade-down">Our Products</h1>
<p class="text-xl max-w-2xl mx-auto" data-aos="fade-up">High-quality audio visual equipment from leading brands worldwide</p>
</div>
</section>
<!-- Products Content -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<!-- Categories -->
<div class="flex flex-wrap justify-center gap-4 mb-12">
<button class="category-btn bg-gray-100 hover:bg-primary hover:text-white px-6 py-2 rounded-full transition active" data-category="all">All Products</button>
<button class="category-btn bg-gray-100 hover:bg-primary hover:text-white px-6 py-2 rounded-full transition" data-category="displays">Displays</button>
<button class="category-btn bg-gray-100 hover:bg-primary hover:text-white px-6 py-2 rounded-full transition" data-category="audio">Audio Systems</button>
<button class="category-btn bg-gray-100 hover:bg-primary hover:text-white px-6 py-2 rounded-full transition" data-category="control">Control Systems</button>
<button class="category-btn bg-gray-100 hover:bg-primary hover:text-white px-6 py-2 rounded-full transition" data-category="accessories">Accessories</button>
</div>
<!-- Products Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Product 1 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="displays" data-aos="fade-up">
<div class="relative">
<img src="https://images.unsplash.com/photo-1593642632823-8f785ba67e45?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Professional Display" class="w-full h-48 object-cover">
<span class="absolute top-4 right-4 bg-primary text-white text-xs px-2 py-1 rounded">New</span>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-gray-800">Professional LED Display</h3>
<span class="text-primary font-bold">$1,299</span>
</div>
<p class="text-gray-600 mb-4">High-resolution commercial display with 4K resolution and HDR support.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<span class="text-gray-600 text-sm ml-2">(24)</span>
</div>
<a href="product-detail.html" class="text-primary font-medium hover:text-dark transition flex items-center">
View Details <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="audio" data-aos="fade-up" data-aos-delay="100">
<div class="relative">
<img src="https://images.unsplash.com/photo-1545454675-3531b543be5d?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Audio System" class="w-full h-48 object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-gray-800">Premium Sound System</h3>
<span class="text-primary font-bold">$899</span>
</div>
<p class="text-gray-600 mb-4">Complete audio solution with 5.1 surround sound and wireless connectivity.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<span class="text-gray-600 text-sm ml-2">(18)</span>
</div>
<a href="product-detail.html" class="text-primary font-medium hover:text-dark transition flex items-center">
View Details <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="control" data-aos="fade-up" data-aos-delay="200">
<div class="relative">
<img src="https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Control System" class="w-full h-48 object-cover">
<span class="absolute top-4 right-4 bg-accent text-white text-xs px-2 py-1 rounded">Best Seller</span>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-gray-800">Smart Control Hub</h3>
<span class="text-primary font-bold">$599</span>
</div>
<p class="text-gray-600 mb-4">Centralized control for all your AV devices with intuitive touch interface.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<span class="text-gray-600 text-sm ml-2">(32)</span>
</div>
<a href="product-detail.html" class="text-primary font-medium hover:text-dark transition flex items-center">
View Details <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="displays" data-aos="fade-up">
<div class="relative">
<img src="https://images.unsplash.com/photo-1558008258-3256797b43f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Digital Signage" class="w-full h-48 object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-gray-800">Digital Signage Display</h3>
<span class="text-primary font-bold">$1,799</span>
</div>
<p class="text-gray-600 mb-4">Commercial-grade digital signage solution with content management system.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<span class="text-gray-600 text-sm ml-2">(15)</span>
</div>
<a href="product-detail.html" class="text-primary font-medium hover:text-dark transition flex items-center">
View Details <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
<!-- Product 5 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="audio" data-aos="fade-up" data-aos-delay="100">
<div class="relative">
<img src="https://images.unsplash.com/photo-1593784991095-a205069470b6?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Soundbar" class="w-full h-48 object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-gray-800">Premium Soundbar</h3>
<span class="text-primary font-bold">$499</span>
</div>
<p class="text-gray-600 mb-4">Sleek soundbar with Dolby Atmos support and wireless subwoofer.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<span class="text-gray-600 text-sm ml-2">(27)</span>
</div>
<a href="product-detail.html" class="text-primary font-medium hover:text-dark transition flex items-center">
View Details <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
<!-- Product 6 -->
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="accessories" data-aos="fade-up" data-aos-delay="200">
<div class="relative">
<img src="https://images.unsplash.com/photo-1590658268037-6bf12165a8df?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Mounting Bracket" class="w-full h-48 object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-gray-800">Wall Mount Bracket</h3>
<span class="text-primary font-bold">$129</span>
</div>
<p class="text-gray-600 mb-4">Universal wall mount for displays up to 70" with full motion articulation.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-yellow-400">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<span class="text-gray-600 text-sm ml-2">(12)</span>
</div>
<a href="product-detail.html" class="text-primary font-medium hover:text-dark transition flex items-center">
View Details <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Pagination -->
<div class="flex justify-center mt-12">
<nav class="flex items-center space-x-1">
<a href="#" class="px-4 py-2 border rounded-l-lg border-gray-300 bg-white text-gray-500 hover:bg-gray-50">
<span class="sr-only">Previous</span>
<i data-feather="chevron-left" class="w-5 h-5"></i>
</a>
<a href="#" class="px-4 py-2 border border-gray-300 bg-primary text-white">1</a>
<a href="#" class="px-4 py-2 border border-gray-300 bg-white text-gray-500 hover:bg-gray-50">2</a>
<a href="#" class="px-4 py-2 border border-gray-300 bg-white text-gray-500 hover:bg-gray-50">3</a>
<a href="#" class="px-4 py-2 border rounded-r-lg border-gray-300 bg-white text-gray-500 hover:bg-gray-50">
<span class="sr-only">Next</span>
<i data-feather="chevron-right" class="w-5 h-5"></i>
</a>
</nav>
</div>
</div>
</section>
<!-- Brands Section -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Trusted Brands</h2>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8">
<div class="bg-white p-6 rounded-lg shadow-sm flex items-center justify-center">
<img src="https://via.placeholder.com/150x80?text=Brand+1" alt="Brand" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
</div>
<div class="bg-white p-6 rounded-lg shadow-sm flex items-center justify-center">
<img src="https://via.placeholder.com/150x80?text=Brand+2" alt="Brand" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
</div>
<div class="bg-white p-6 rounded-lg shadow-sm flex items-center justify-center">
<img src="https://via.placeholder.com/150x80?text=Brand+3" alt="Brand" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
</div>
<div class="bg-white p-6 rounded-lg shadow-sm flex items-center justify-center">
<img src="https://via.placeholder.com/150x80?text=Brand+4" alt="Brand" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
</div>
<div class="bg-white p-6 rounded-lg shadow-sm flex items-center justify-center">
<img src="https://via.placeholder.com/150x80?text=Brand+5" alt="Brand" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
</div>
<div class="bg-white p-6 rounded-lg shadow-sm flex items-center justify-center">
<img src="https://via.placeholder.com/150x80?text=Brand+6" alt="Brand" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-primary text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold mb-6">Need Help Choosing the Right Product?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Our experts are ready to help you find the perfect audio visual solution for your needs.</p>
<a href="contact.html" class="inline-block bg-white hover:bg-gray-100 text-primary font-bold py-3 px-8 rounded-full transition duration-300">Contact Our Team</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">ITEMDD</h3>
<p class="text-gray-400">Professional audio visual solutions for businesses and homes.</p>
<div class="flex mt-4 space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="instagram"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="index.html" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="products.html" class="text-gray-400 hover:text-white transition">Products</a></li>
<li><a href="solutions.html" class="text-gray-400 hover:text-white transition">Solutions</a></li>
<li><a href="projects.html" class="text-gray-400 hover:text-white transition">Projects</a></li>
<li><a href="about.html" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="contact.html" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact Info</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i data-feather="map-pin" class="mr-2 mt-1"></i>
<span>123 AV Street, Bangkok, Thailand</span>
</li>
<li class="flex items-start">
<i data-feather="phone" class="mr-2 mt-1"></i>
<span>+66 2 123 4567</span>
</li>
<li class="flex items-start">
<i data-feather="mail" class="mr-2 mt-1"></i>
<span>info@itemdd.com</span>
</li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest updates and offers.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l focus:outline-none text-gray-800">
<button type="submit" class="bg-accent hover:bg-dark px-4 rounded-r">
<i data-feather="send"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2023 ITEMDD. All rights reserved.</p>
</div>
</div>
</footer>
<script>
AOS.init();
feather.replace();
// Category filter functionality
document.addEventListener('DOMContentLoaded', function() {
const categoryBtns = document.querySelectorAll('.category-btn');
const productCards = document.querySelectorAll('.product-card');
categoryBtns.forEach(btn => {
btn.addEventListener('click', function() {
// Remove active class from all buttons
categoryBtns.forEach(b => b.classList.remove('active'));
// Add active class to clicked button
this.classList.add('active');
const category = this.dataset.category;
// Filter products
productCards.forEach(card => {
if (category === 'all' || card.dataset.category === category) {
card.style.display = 'block';
} else {
card.style.display = 'none';
}
});
});
});
});
</script>
</body>
</html>