Spaces:
Running
Running
<html lang="tr"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Modern E-Ticaret Sitesi</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> | |
.product-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
} | |
.category-item:hover .category-icon { | |
transform: scale(1.1); | |
} | |
.dropdown:hover .dropdown-menu { | |
display: block; | |
} | |
.hero-section { | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
} | |
.discount-badge { | |
position: absolute; | |
top: 10px; | |
right: 10px; | |
} | |
.cart-notification { | |
position: absolute; | |
top: -5px; | |
right: -5px; | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50 font-sans"> | |
<!-- Üst Bilgi Çubuğu --> | |
<div class="bg-gray-800 text-white py-2 px-4 text-sm"> | |
<div class="container mx-auto flex justify-between items-center"> | |
<div class="flex space-x-4"> | |
<span><i class="fas fa-phone-alt mr-1"></i> 0850 123 45 67</span> | |
<span><i class="fas fa-envelope mr-1"></i> [email protected]</span> | |
</div> | |
<div class="flex space-x-4"> | |
<a href="#" class="hover:text-blue-300">Yardım</a> | |
<a href="#" class="hover:text-blue-300">Takip</a> | |
<a href="#" class="hover:text-blue-300">Mağazalarımız</a> | |
</div> | |
</div> | |
</div> | |
<!-- Ana Navigasyon --> | |
<header class="bg-white shadow-sm sticky top-0 z-50"> | |
<div class="container mx-auto px-4 py-4"> | |
<div class="flex justify-between items-center"> | |
<!-- Logo --> | |
<div class="flex items-center"> | |
<a href="#" class="text-2xl font-bold text-indigo-600">E-Ticaret<span class="text-gray-800">Pro</span></a> | |
</div> | |
<!-- Arama Çubuğu --> | |
<div class="hidden md:flex flex-1 mx-8"> | |
<div class="relative w-full"> | |
<input type="text" placeholder="Ürün, kategori veya marka ara..." | |
class="w-full py-2 px-4 border border-gray-300 rounded-l-full focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
<button class="absolute right-0 top-0 h-full px-4 bg-indigo-600 text-white rounded-r-full hover:bg-indigo-700"> | |
<i class="fas fa-search"></i> | |
</button> | |
</div> | |
</div> | |
<!-- Kullanıcı İşlemleri --> | |
<div class="flex items-center space-x-4"> | |
<div class="relative"> | |
<a href="#" class="text-gray-700 hover:text-indigo-600"> | |
<i class="fas fa-user text-xl"></i> | |
</a> | |
</div> | |
<div class="relative"> | |
<a href="#" class="text-gray-700 hover:text-indigo-600"> | |
<i class="fas fa-heart text-xl"></i> | |
</a> | |
<span class="cart-notification bg-red-500 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span> | |
</div> | |
<div class="relative"> | |
<a href="#" class="text-gray-700 hover:text-indigo-600"> | |
<i class="fas fa-shopping-cart text-xl"></i> | |
</a> | |
<span class="cart-notification bg-red-500 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">5</span> | |
</div> | |
</div> | |
</div> | |
<!-- Mobil Arama Çubuğu --> | |
<div class="md:hidden mt-4"> | |
<div class="relative"> | |
<input type="text" placeholder="Ürün, kategori veya marka ara..." | |
class="w-full py-2 px-4 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
<button class="absolute right-0 top-0 h-full px-4 text-gray-500"> | |
<i class="fas fa-search"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Kategori Menüsü --> | |
<nav class="bg-indigo-600 text-white"> | |
<div class="container mx-auto px-4"> | |
<div class="flex items-center justify-between"> | |
<div class="dropdown relative"> | |
<button class="flex items-center space-x-2 py-3 px-4 bg-indigo-700 hover:bg-indigo-800"> | |
<i class="fas fa-bars"></i> | |
<span>Tüm Kategoriler</span> | |
<i class="fas fa-chevron-down text-xs"></i> | |
</button> | |
<div class="dropdown-menu absolute left-0 mt-0 w-56 bg-white shadow-lg rounded-b-md hidden z-50"> | |
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100 border-b border-gray-100">Elektronik</a> | |
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100 border-b border-gray-100">Moda</a> | |
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100 border-b border-gray-100">Ev & Yaşam</a> | |
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100 border-b border-gray-100">Spor & Outdoor</a> | |
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100 border-b border-gray-100">Kozmetik</a> | |
<a href="#" class="block px-4 py-2 text-gray-800 hover:bg-gray-100">Süpermarket</a> | |
</div> | |
</div> | |
<div class="hidden md:flex space-x-6"> | |
<a href="#" class="py-3 hover:bg-indigo-700 px-2">Ana Sayfa</a> | |
<a href="#" class="py-3 hover:bg-indigo-700 px-2">Kampanyalar</a> | |
<a href="#" class="py-3 hover:bg-indigo-700 px-2">Yeni Ürünler</a> | |
<a href="#" class="py-3 hover:bg-indigo-700 px-2">Çok Satanlar</a> | |
<a href="#" class="py-3 hover:bg-indigo-700 px-2">Markalar</a> | |
</div> | |
<div class="flex items-center"> | |
<a href="#" class="py-3 px-4 bg-yellow-400 text-gray-800 font-medium hover:bg-yellow-500"> | |
<i class="fas fa-gift mr-2"></i> Hediye Kataloğu | |
</a> | |
</div> | |
</div> | |
</div> | |
</nav> | |
</header> | |
<!-- Hero Bölümü --> | |
<section class="hero-section text-white"> | |
<div class="container mx-auto px-4 py-12 md:py-24"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-8 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl font-bold mb-4">Yaz İndirimleri Başladı!</h1> | |
<p class="text-xl mb-6">Seçili ürünlerde %50'ye varan indirimlerle yaz tatilinizi şenlendirin.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-full font-medium hover:bg-gray-100">Alışverişe Başla</a> | |
<a href="#" class="border border-white px-6 py-3 rounded-full font-medium hover:bg-white hover:text-indigo-600">Kampanyaları Gör</a> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<img src="https://via.placeholder.com/500x300" alt="Yaz İndirimleri" class="rounded-lg shadow-xl"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Kategoriler --> | |
<section class="py-12 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold mb-8 text-center">Kategoriler</h2> | |
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4"> | |
<!-- Kategori 1 --> | |
<div class="category-item bg-gray-50 rounded-lg p-4 text-center cursor-pointer transition-all duration-300 hover:shadow-md"> | |
<div class="category-icon bg-indigo-100 text-indigo-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-3 transition-transform duration-300"> | |
<i class="fas fa-laptop text-2xl"></i> | |
</div> | |
<h3 class="font-medium">Elektronik</h3> | |
</div> | |
<!-- Kategori 2 --> | |
<div class="category-item bg-gray-50 rounded-lg p-4 text-center cursor-pointer transition-all duration-300 hover:shadow-md"> | |
<div class="category-icon bg-pink-100 text-pink-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-3 transition-transform duration-300"> | |
<i class="fas fa-tshirt text-2xl"></i> | |
</div> | |
<h3 class="font-medium">Moda</h3> | |
</div> | |
<!-- Kategori 3 --> | |
<div class="category-item bg-gray-50 rounded-lg p-4 text-center cursor-pointer transition-all duration-300 hover:shadow-md"> | |
<div class="category-icon bg-green-100 text-green-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-3 transition-transform duration-300"> | |
<i class="fas fa-home text-2xl"></i> | |
</div> | |
<h3 class="font-medium">Ev & Yaşam</h3> | |
</div> | |
<!-- Kategori 4 --> | |
<div class="category-item bg-gray-50 rounded-lg p-4 text-center cursor-pointer transition-all duration-300 hover:shadow-md"> | |
<div class="category-icon bg-blue-100 text-blue-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-3 transition-transform duration-300"> | |
<i class="fas fa-running text-2xl"></i> | |
</div> | |
<h3 class="font-medium">Spor & Outdoor</h3> | |
</div> | |
<!-- Kategori 5 --> | |
<div class="category-item bg-gray-50 rounded-lg p-4 text-center cursor-pointer transition-all duration-300 hover:shadow-md"> | |
<div class="category-icon bg-purple-100 text-purple-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-3 transition-transform duration-300"> | |
<i class="fas fa-spa text-2xl"></i> | |
</div> | |
<h3 class="font-medium">Kozmetik</h3> | |
</div> | |
<!-- Kategori 6 --> | |
<div class="category-item bg-gray-50 rounded-lg p-4 text-center cursor-pointer transition-all duration-300 hover:shadow-md"> | |
<div class="category-icon bg-yellow-100 text-yellow-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-3 transition-transform duration-300"> | |
<i class="fas fa-shopping-basket text-2xl"></i> | |
</div> | |
<h3 class="font-medium">Süpermarket</h3> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Öne Çıkan Ürünler --> | |
<section class="py-12 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<div class="flex justify-between items-center mb-8"> | |
<h2 class="text-3xl font-bold">Öne Çıkan Ürünler</h2> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Tümünü Gör <i class="fas fa-arrow-right ml-1"></i></a> | |
</div> | |
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6"> | |
<!-- Ürün 1 --> | |
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 relative"> | |
<div class="discount-badge bg-red-500 text-white text-xs font-bold px-2 py-1 rounded"> | |
%25 İNDİRİM | |
</div> | |
<div class="p-4"> | |
<img src="https://via.placeholder.com/300x200" alt="Ürün Resmi" class="w-full h-48 object-contain"> | |
</div> | |
<div class="px-4 pb-4"> | |
<div class="text-xs text-gray-500 mb-1">Apple</div> | |
<h3 class="font-medium text-gray-800 mb-2">iPhone 13 Pro 128GB</h3> | |
<div class="flex items-center mb-2"> | |
<div class="flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star-half-alt"></i> | |
</div> | |
<span class="text-xs text-gray-500 ml-1">(124)</span> | |
</div> | |
<div class="flex items-center justify-between"> | |
<div> | |
<span class="text-gray-500 line-through text-sm">24.999 TL</span> | |
<span class="text-indigo-600 font-bold text-lg ml-2">18.749 TL</span> | |
</div> | |
<button class="bg-indigo-100 text-indigo-600 p-2 rounded-full hover:bg-indigo-200"> | |
<i class="fas fa-shopping-cart"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Ürün 2 --> | |
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 relative"> | |
<div class="p-4"> | |
<img src="https://via.placeholder.com/300x200" alt="Ürün Resmi" class="w-full h-48 object-contain"> | |
</div> | |
<div class="px-4 pb-4"> | |
<div class="text-xs text-gray-500 mb-1">Samsung</div> | |
<h3 class="font-medium text-gray-800 mb-2">Galaxy Watch 4 Classic</h3> | |
<div class="flex items-center mb-2"> | |
<div class="flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="far fa-star"></i> | |
</div> | |
<span class="text-xs text-gray-500 ml-1">(89)</span> | |
</div> | |
<div class="flex items-center justify-between"> | |
<div> | |
<span class="text-indigo-600 font-bold text-lg">4.299 TL</span> | |
</div> | |
<button class="bg-indigo-100 text-indigo-600 p-2 rounded-full hover:bg-indigo-200"> | |
<i class="fas fa-shopping-cart"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Ürün 3 --> | |
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 relative"> | |
<div class="discount-badge bg-red-500 text-white text-xs font-bold px-2 py-1 rounded"> | |
%15 İNDİRİM | |
</div> | |
<div class="p-4"> | |
<img src="https://via.placeholder.com/300x200" alt="Ürün Resmi" class="w-full h-48 object-contain"> | |
</div> | |
<div class="px-4 pb-4"> | |
<div class="text-xs text-gray-500 mb-1">Nike</div> | |
<h3 class="font-medium text-gray-800 mb-2">Air Max 270 Erkek Spor Ayakkabı</h3> | |
<div class="flex items-center mb-2"> | |
<div class="flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
<span class="text-xs text-gray-500 ml-1">(215)</span> | |
</div> | |
<div class="flex items-center justify-between"> | |
<div> | |
<span class="text-gray-500 line-through text-sm">3.499 TL</span> | |
<span class="text-indigo-600 font-bold text-lg ml-2">2.974 TL</span> | |
</div> | |
<button class="bg-indigo-100 text-indigo-600 p-2 rounded-full hover:bg-indigo-200"> | |
<i class="fas fa-shopping-cart"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Ürün 4 --> | |
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 relative"> | |
<div class="p-4"> | |
<img src="https://via.placeholder.com/300x200" alt="Ürün Resmi" class="w-full h-48 object-contain"> | |
</div> | |
<div class="px-4 pb-4"> | |
<div class="text-xs text-gray-500 mb-1">Xiaomi</div> | |
<h3 class="font-medium text-gray-800 mb-2">Mi Robot Vacuum-Mop Pro</h3> | |
<div class="flex items-center mb-2"> | |
<div class="flex text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star-half-alt"></i> | |
</div> | |
<span class="text-xs text-gray-500 ml-1">(167)</span> | |
</div> | |
<div class="flex items-center justify-between"> | |
<div> | |
<span class="text-indigo-600 font-bold text-lg">7.599 TL</span> | |
</div> | |
<button class="bg-indigo-100 text-indigo-600 p-2 rounded-full hover:bg-indigo-200"> | |
<i class="fas fa-shopping-cart"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Kampanyalar --> | |
<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">Özel Kampanyalar</h2> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Tüm Kampanyalar <i class="fas fa-arrow-right ml-1"></i></a> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-6"> | |
<!-- Kampanya 1 --> | |
<div class="relative rounded-lg overflow-hidden h-64"> | |
<img src="https://via.placeholder.com/800x400" alt="Kampanya" class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center p-8"> | |
<div> | |
<h3 class="text-white text-2xl md:text-3xl font-bold mb-2">Yaz Tatili Fırsatları</h3> | |
<p class="text-white mb-4">Seçili valiz ve bavullarda %40'a varan indirimler</p> | |
<a href="#" class="bg-white text-indigo-600 px-6 py-2 rounded-full font-medium hover:bg-gray-100 inline-block">Hemen Al</a> | |
</div> | |
</div> | |
</div> | |
<!-- Kampanya 2 --> | |
<div class="relative rounded-lg overflow-hidden h-64"> | |
<img src="https://via.placeholder.com/800x400" alt="Kampanya" class="w-full h-full object-cover"> | |
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center p-8"> | |
<div> | |
<h3 class="text-white text-2xl md:text-3xl font-bold mb-2">Teknoloji Şenliği</h3> | |
<p class="text-white mb-4">Kulaklık, hoparlör ve aksesuarlarda büyük indirimler</p> | |
<a href="#" class="bg-white text-indigo-600 px-6 py-2 rounded-full font-medium hover:bg-gray-100 inline-block">Keşfet</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Markalar --> | |
<section class="py-12 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold mb-8 text-center">Popüler Markalar</h2> | |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4"> | |
<div class="bg-white p-6 flex items-center justify-center rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<img src="https://via.placeholder.com/150x60" alt="Apple" class="h-10 object-contain"> | |
</div> | |
<div class="bg-white p-6 flex items-center justify-center rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<img src="https://via.placeholder.com/150x60" alt="Samsung" class="h-10 object-contain"> | |
</div> | |
<div class="bg-white p-6 flex items-center justify-center rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<img src="https://via.placeholder.com/150x60" alt="Nike" class="h-10 object-contain"> | |
</div> | |
<div class="bg-white p-6 flex items-center justify-center rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<img src="https://via.placeholder.com/150x60" alt="Adidas" class="h-10 object-contain"> | |
</div> | |
<div class="bg-white p-6 flex items-center justify-center rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<img src="https://via.placeholder.com/150x60" alt="Xiaomi" class="h-10 object-contain"> | |
</div> | |
<div class="bg-white p-6 flex items-center justify-center rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<img src="https://via.placeholder.com/150x60" alt="Huawei" class="h-10 object-contain"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Özellikler --> | |
<section class="py-12 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
<div class="text-center"> | |
<div class="bg-indigo-100 text-indigo-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-4"> | |
<i class="fas fa-truck text-2xl"></i> | |
</div> | |
<h3 class="font-bold text-lg mb-2">Ücretsiz Kargo</h3> | |
<p class="text-gray-600">150 TL ve üzeri alışverişlerde ücretsiz kargo avantajı</p> | |
</div> | |
<div class="text-center"> | |
<div class="bg-green-100 text-green-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-4"> | |
<i class="fas fa-undo text-2xl"></i> | |
</div> | |
<h3 class="font-bold text-lg mb-2">Kolay İade</h3> | |
<p class="text-gray-600">14 gün içinde ücretsiz iade imkanı</p> | |
</div> | |
<div class="text-center"> | |
<div class="bg-yellow-100 text-yellow-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-4"> | |
<i class="fas fa-lock text-2xl"></i> | |
</div> | |
<h3 class="font-bold text-lg mb-2">Güvenli Alışveriş</h3> | |
<p class="text-gray-600">256-bit SSL sertifikası ile güvenli ödeme</p> | |
</div> | |
<div class="text-center"> | |
<div class="bg-red-100 text-red-600 rounded-full h-16 w-16 flex items-center justify-center mx-auto mb-4"> | |
<i class="fas fa-headset text-2xl"></i> | |
</div> | |
<h3 class="font-bold text-lg mb-2">7/24 Destek</h3> | |
<p class="text-gray-600">Müşteri hizmetleri her zaman yanınızda</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-800 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"> | |
<div> | |
<h3 class="text-xl font-bold mb-4">E-TicaretPro</h3> | |
<p class="text-gray-400 mb-4">Türkiye'nin en güvenilir online alışveriş sitesi. Binlerce ürün çeşidi ve uygun fiyat avantajı ile hizmetinizdeyiz.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-4">Müşteri Hizmetleri</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Sipariş Takibi</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Sıkça Sorulan Sorular</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">İade Politikası</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Gizlilik Politikası</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">İletişim</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-4">Hakkımızda</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Biz Kimiz?</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Kariyer</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Mağazalarımız</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Basın</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-4">Bülten Aboneliği</h3> | |
<p class="text-gray-400 mb-4">Kampanya ve indirimlerden haberdar olmak için e-posta listemize kaydolun.</p> | |
<div class="flex"> | |
<input type="email" placeholder="E-posta adresiniz" class="px-4 py-2 w-full rounded-l text-gray-800 focus:outline-none"> | |
<button class="bg-indigo-600 px-4 rounded-r hover:bg-indigo-700"> | |
<i class="fas fa-paper-plane"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 pt-6"> | |
<div class="flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 E-TicaretPro. Tüm hakları saklıdır.</p> | |
<div class="flex space-x-6"> | |
<img src="https://via.placeholder.com/50x30" alt="Visa" class="h-8"> | |
<img src="https://via.placeholder.com/50x30" alt="Mastercard" class="h-8"> | |
<img src="https://via.placeholder.com/50x30" alt="Troy" class="h-8"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<!-- Mobil Bottom Nav --> | |
<div class="md:hidden fixed bottom-0 left-0 right-0 bg-white shadow-lg z-50"> | |
<div class="flex justify-around py-3"> | |
<a href="#" class="flex flex-col items-center text-indigo-600"> | |
<i class="fas fa-home text-xl"></i> | |
<span class="text-xs mt-1">Ana Sayfa</span> | |
</a> | |
<a href="#" class="flex flex-col items-center text-gray-600"> | |
<i class="fas fa-search text-xl"></i> | |
<span class="text-xs mt-1">Ara</span> | |
</a> | |
<a href="#" class="flex flex-col items-center text-gray-600 relative"> | |
<i class="fas fa-shopping-cart text-xl"></i> | |
<span class="text-xs mt-1">Sepet</span> | |
<span class="absolute -top-1 -right-2 bg-red-500 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">5</span> | |
</a> | |
<a href="#" class="flex flex-col items-center text-gray-600"> | |
<i class="fas fa-user text-xl"></i> | |
<span class="text-xs mt-1">Hesabım</span> | |
</a> | |
</div> | |
</div> | |
<script> | |
// Sepete ekle butonları için basit bir işlev | |
document.querySelectorAll('.product-card button').forEach(button => { | |
button.addEventListener('click', function() { | |
const productName = this.closest('.product-card').querySelector('h3').textContent; | |
alert(`${productName} sepete eklendi!`); | |
}); | |
}); | |
// Mobil menü toggle | |
const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
const mobileMenu = document.getElementById('mobile-menu'); | |
if(mobileMenuButton && mobileMenu) { | |
mobileMenuButton.addEventListener('click', function() { | |
mobileMenu.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=bunyaminergen/e-commerceui" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |