hypermarket-pro / index.html
Akarimvand's picture
سند نیازمندی‌های پروژه: توسعه سیستم یکپارچه فروشگاه آنلاین هایپرمارکت
fd01c0c verified
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HyperMarket Pro</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Vazirmatn', sans-serif;
}
</style>
</head>
<body class="bg-gray-100">
<!-- Header Component -->
<custom-header></custom-header>
<!-- Hero Section -->
<section class="relative bg-gradient-to-r from-blue-600 to-purple-600 text-white py-20">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4">فروشگاه آنلاین هایپرمارکت</h1>
<p class="text-xl mb-8">خرید آسان، تحویل سریع، قیمت مناسب</p>
<a href="products.html" class="bg-white text-blue-600 px-6 py-3 rounded-full font-bold hover:bg-gray-100 transition">مشاهده محصولات</a>
</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-10">دسته‌بندی محصولات</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="bg-gray-50 p-6 rounded-lg text-center shadow hover:shadow-lg transition">
<i data-feather="package" class="w-12 h-12 mx-auto text-blue-500 mb-4"></i>
<h3 class="text-xl font-semibold">لبنیات</h3>
</div>
<div class="bg-gray-50 p-6 rounded-lg text-center shadow hover:shadow-lg transition">
<i data-feather="shopping-bag" class="w-12 h-12 mx-auto text-green-500 mb-4"></i>
<h3 class="text-xl font-semibold">خشکبار</h3>
</div>
<div class="bg-gray-50 p-6 rounded-lg text-center shadow hover:shadow-lg transition">
<i data-feather="fish" class="w-12 h-12 mx-auto text-red-500 mb-4"></i>
<h3 class="text-xl font-semibold">پروتئینی</h3>
</div>
<div class="bg-gray-50 p-6 rounded-lg text-center shadow hover:shadow-lg transition">
<i data-feather="coffee" class="w-12 h-12 mx-auto text-yellow-500 mb-4"></i>
<h3 class="text-xl font-semibold">نوشیدنی</h3>
</div>
</div>
</div>
</section>
<!-- Featured Products -->
<section class="py-12 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-10">محصولات پرفروش</h2>
<div class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Product Card -->
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<img src="http://static.photos/food/320x240/1" alt="Product" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-lg font-semibold">شیر پاستوریزه پاک</h3>
<p class="text-gray-600 mt-2">1 لیتر</p>
<div class="flex justify-between items-center mt-4">
<span class="text-blue-600 font-bold">25,000 تومان</span>
<button class="bg-blue-500 text-white px-3 py-1 rounded hover:bg-blue-600 transition">
<i data-feather="shopping-cart" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
<!-- Repeat for other products -->
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<img src="http://static.photos/food/320x240/2" alt="Product" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-lg font-semibold">نان لواش تازه</h3>
<p class="text-gray-600 mt-2">بسته 5 عددی</p>
<div class="flex justify-between items-center mt-4">
<span class="text-blue-600 font-bold">12,000 تومان</span>
<button class="bg-blue-500 text-white px-3 py-1 rounded hover:bg-blue-600 transition">
<i data-feather="shopping-cart" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<img src="http://static.photos/food/320x240/3" alt="Product" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-lg font-semibold">تخم مرغ فرمیک</h3>
<p class="text-gray-600 mt-2">بسته 10 عددی</p>
<div class="flex justify-between items-center mt-4">
<span class="text-blue-600 font-bold">18,000 تومان</span>
<button class="bg-blue-500 text-white px-3 py-1 rounded hover:bg-blue-600 transition">
<i data-feather="shopping-cart" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<img src="http://static.photos/food/320x240/4" alt="Product" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-lg font-semibold">روغن سرخ کردنی</h3>
<p class="text-gray-600 mt-2">1 لیتر</p>
<div class="flex justify-between items-center mt-4">
<span class="text-blue-600 font-bold">35,000 تومان</span>
<button class="bg-blue-500 text-white px-3 py-1 rounded hover:bg-blue-600 transition">
<i data-feather="shopping-cart" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-10">ویژگی‌های ما</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center">
<i data-feather="truck" class="w-12 h-12 mx-auto text-blue-500 mb-4"></i>
<h3 class="text-xl font-semibold mb-2">تحویل سریع</h3>
<p class="text-gray-600">تحویل در کمتر از 2 ساعت در منطقه شهری</p>
</div>
<div class="text-center">
<i data-feather="percent" class="w-12 h-12 mx-auto text-green-500 mb-4"></i>
<h3 class="text-xl font-semibold mb-2">تخفیف‌های ویژه</h3>
<p class="text-gray-600">پیشنهادات شگفت‌انگیز هر هفته</p>
</div>
<div class="text-center">
<i data-feather="award" class="w-12 h-12 mx-auto text-yellow-500 mb-4"></i>
<h3 class="text-xl font-semibold mb-2">کیفیت تضمینی</h3>
<p class="text-gray-600">تضمین کیفیت تمامی محصولات</p>
</div>
</div>
</div>
</section>
<!-- Subscription Banner -->
<section class="py-12 bg-gradient-to-r from-green-500 to-blue-500 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-4">طرح اشتراک ویژه</h2>
<p class="text-xl mb-8">با پرداخت ماهانه ۱۰۰,۰۰۰ تومان، از ارسال رایگان به مدت یک ماه لذت ببرید!</p>
<a href="subscription.html" class="bg-white text-green-600 px-6 py-3 rounded-full font-bold hover:bg-gray-100 transition">ثبت‌نام در طرح اشتراک</a>
</div>
</section>
<!-- Testimonials -->
<section class="py-12 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-10">نظرات مشتریان</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow">
<p class="text-gray-600 mb-4">"خدمت تحویل فوق‌العاده سریع دارید. همیشه محصولات تازه و با کیفیت هستند."</p>
<div class="flex items-center">
<img src="http://static.photos/people/64x64/1" alt="Customer" class="w-12 h-12 rounded-full ml-4">
<div>
<h4 class="font-semibold">سارا محمدی</h4>
<p class="text-gray-500">مشتری وفادار</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<p class="text-gray-600 mb-4">"تنوع محصولات و قیمت مناسب باعث شده همیشه از شما خرید کنم. پیشنهاد می‌کنم!"</p>
<div class="flex items-center">
<img src="http://static.photos/people/64x64/2" alt="Customer" class="w-12 h-12 rounded-full ml-4">
<div>
<h4 class="font-semibold">علی رضایی</h4>
<p class="text-gray-500">مشتری وفادار</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<p class="text-gray-600 mb-4">"اپلیکیشن بسیار کاربرپسند است و سفارش دادن خیلی راحت شده. ممنون از تیم پشتیبانی خوبتان."</p>
<div class="flex items-center">
<img src="http://static.photos/people/64x64/3" alt="Customer" class="w-12 h-12 rounded-full ml-4">
<div>
<h4 class="font-semibold">مریم کریمی</h4>
<p class="text-gray-500">مشتری جدید</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Component -->
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>