|
<!DOCTYPE html> |
|
<html lang="fa" dir="rtl"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>گیاهان دارویی طب سنتی | فروشگاه عطاری آنلاین</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> |
|
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap'); |
|
|
|
body { |
|
font-family: 'Vazirmatn', sans-serif; |
|
background-color: #f8f8f8; |
|
} |
|
|
|
.hero-bg { |
|
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80'); |
|
background-size: cover; |
|
background-position: center; |
|
} |
|
|
|
.product-card:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); |
|
} |
|
|
|
.category-item:hover { |
|
background-color: #f0fdf4; |
|
} |
|
|
|
.nav-link:hover { |
|
color: #16a34a; |
|
} |
|
|
|
.search-box:focus { |
|
outline: none; |
|
box-shadow: 0 0 0 2px #16a34a; |
|
} |
|
|
|
.footer-link:hover { |
|
color: #16a34a; |
|
text-decoration: underline; |
|
} |
|
|
|
.cart-badge { |
|
position: absolute; |
|
top: -5px; |
|
right: -5px; |
|
background-color: #ef4444; |
|
color: white; |
|
border-radius: 50%; |
|
width: 20px; |
|
height: 20px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
font-size: 12px; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<header class="bg-white shadow-sm sticky top-0 z-50"> |
|
<div class="container mx-auto px-4 py-3 flex justify-between items-center"> |
|
|
|
<div class="flex items-center"> |
|
<i class="fas fa-leaf text-green-600 text-2xl ml-2"></i> |
|
<h1 class="text-xl font-bold text-green-800">طبیعتگرا</h1> |
|
</div> |
|
|
|
|
|
<nav class="hidden md:flex space-x-8 space-x-reverse"> |
|
<a href="#" class="nav-link text-gray-700 hover:text-green-600 font-medium">خانه</a> |
|
<a href="#" class="nav-link text-gray-700 hover:text-green-600 font-medium">محصولات</a> |
|
<a href="#" class="nav-link text-gray-700 hover:text-green-600 font-medium">درباره ما</a> |
|
<a href="#" class="nav-link text-gray-700 hover:text-green-600 font-medium">مقالات</a> |
|
<a href="#" class="nav-link text-gray-700 hover:text-green-600 font-medium">تماس با ما</a> |
|
</nav> |
|
|
|
|
|
<div class="flex items-center space-x-4 space-x-reverse"> |
|
<div class="relative"> |
|
<i class="fas fa-search text-gray-500 cursor-pointer"></i> |
|
</div> |
|
<div class="relative"> |
|
<i class="fas fa-user text-gray-500 cursor-pointer"></i> |
|
</div> |
|
<div class="relative"> |
|
<i class="fas fa-shopping-cart text-gray-500 cursor-pointer"></i> |
|
<span class="cart-badge">3</span> |
|
</div> |
|
<button class="md:hidden"> |
|
<i class="fas fa-bars text-gray-500 text-xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="md:hidden bg-white py-2 px-4 shadow-md hidden" id="mobileMenu"> |
|
<a href="#" class="block py-2 text-gray-700 hover:text-green-600">خانه</a> |
|
<a href="#" class="block py-2 text-gray-700 hover:text-green-600">محصولات</a> |
|
<a href="#" class="block py-2 text-gray-700 hover:text-green-600">درباره ما</a> |
|
<a href="#" class="block py-2 text-gray-700 hover:text-green-600">مقالات</a> |
|
<a href="#" class="block py-2 text-gray-700 hover:text-green-600">تماس با ما</a> |
|
</div> |
|
</header> |
|
|
|
|
|
<section class="hero-bg text-white py-20"> |
|
<div class="container mx-auto px-4 text-center"> |
|
<h1 class="text-4xl md:text-5xl font-bold mb-6">گیاهان دارویی با کیفیت و اصل</h1> |
|
<p class="text-xl mb-8 max-w-2xl mx-auto">طبیعت بهترین درمانگر است. با محصولات طبیعی و ارگانیک ما سلامتی را به زندگی خود بازگردانید.</p> |
|
<div class="flex justify-center space-x-4 space-x-reverse"> |
|
<button class="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">محصولات</button> |
|
<button class="bg-white hover:bg-gray-100 text-green-600 px-6 py-3 rounded-lg font-medium transition duration-300">مقالات</button> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-12 bg-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
<div class="text-center p-6 rounded-lg"> |
|
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> |
|
<i class="fas fa-truck text-green-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">ارسال سریع</h3> |
|
<p class="text-gray-600">ارسال به تمام نقاط کشور در کمترین زمان ممکن</p> |
|
</div> |
|
<div class="text-center p-6 rounded-lg"> |
|
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> |
|
<i class="fas fa-check-circle text-green-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">کیفیت تضمینی</h3> |
|
<p class="text-gray-600">کلیه محصولات با بالاترین کیفیت و استانداردهای بهداشتی</p> |
|
</div> |
|
<div class="text-center p-6 rounded-lg"> |
|
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4"> |
|
<i class="fas fa-headset text-green-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">پشتیبانی 24/7</h3> |
|
<p class="text-gray-600">پشتیبانی و مشاوره تخصصی در تمام ساعات شبانه روز</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-12 bg-gray-50"> |
|
<div class="container mx-auto px-4"> |
|
<h2 class="text-3xl font-bold text-center mb-12">دستهبندی محصولات</h2> |
|
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4"> |
|
<div class="category-item bg-white p-4 rounded-lg shadow-sm text-center cursor-pointer transition duration-300"> |
|
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-3"> |
|
<i class="fas fa-spa text-green-600"></i> |
|
</div> |
|
<h3 class="font-medium">گیاهان دارویی</h3> |
|
</div> |
|
<div class="category-item bg-white p-4 rounded-lg shadow-sm text-center cursor-pointer transition duration-300"> |
|
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-3"> |
|
<i class="fas fa-mortar-pestle text-green-600"></i> |
|
</div> |
|
<h3 class="font-medium">دمنوشها</h3> |
|
</div> |
|
<div class="category-item bg-white p-4 rounded-lg shadow-sm text-center cursor-pointer transition duration-300"> |
|
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-3"> |
|
<i class="fas fa-flask text-green-600"></i> |
|
</div> |
|
<h3 class="font-medium">عصارهها</h3> |
|
</div> |
|
<div class="category-item bg-white p-4 rounded-lg shadow-sm text-center cursor-pointer transition duration-300"> |
|
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-3"> |
|
<i class="fas fa-seedling text-green-600"></i> |
|
</div> |
|
<h3 class="font-medium">بذر گیاهان</h3> |
|
</div> |
|
<div class="category-item bg-white p-4 rounded-lg shadow-sm text-center cursor-pointer transition duration-300"> |
|
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-3"> |
|
<i class="fas fa-oil-can text-green-600"></i> |
|
</div> |
|
<h3 class="font-medium">روغنهای گیاهی</h3> |
|
</div> |
|
<div class="category-item bg-white p-4 rounded-lg shadow-sm text-center cursor-pointer transition duration-300"> |
|
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mx-auto mb-3"> |
|
<i class="fas fa-spray-can text-green-600"></i> |
|
</div> |
|
<h3 class="font-medium">عطر و اسانس</h3> |
|
</div> |
|
</div> |
|
</div> |
|
</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">محصولات پرفروش</h2> |
|
<a href="#" class="text-green-600 hover:text-green-700 font-medium">مشاهده همه <i class="fas fa-arrow-left mr-1"></i></a> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6"> |
|
|
|
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
|
<div class="relative"> |
|
<img src="https://images.unsplash.com/photo-1597302935406-ca3e7a8a1664?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="گیاه آویشن" class="w-full h-48 object-cover"> |
|
<div class="absolute top-2 left-2 bg-green-600 text-white text-xs px-2 py-1 rounded">جدید</div> |
|
</div> |
|
<div class="p-4"> |
|
<h3 class="font-bold text-lg mb-1">آویشن کوهی</h3> |
|
<p class="text-gray-600 text-sm mb-3">مناسب برای سرماخوردگی و مشکلات گوارشی</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="font-bold text-green-600">45,000 تومان</span> |
|
<button class="bg-green-100 text-green-600 hover:bg-green-200 px-3 py-1 rounded-full text-sm transition duration-300"> |
|
<i class="fas fa-plus ml-1"></i> افزودن |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
|
<div class="relative"> |
|
<img src="https://images.unsplash.com/photo-1597318181407-1a5c5191a3d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="گل گاوزبان" class="w-full h-48 object-cover"> |
|
<div class="absolute top-2 left-2 bg-red-500 text-white text-xs px-2 py-1 rounded">پرفروش</div> |
|
</div> |
|
<div class="p-4"> |
|
<h3 class="font-bold text-lg mb-1">گل گاوزبان</h3> |
|
<p class="text-gray-600 text-sm mb-3">مفید برای آرامش اعصاب و کاهش استرس</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="font-bold text-green-600">65,000 تومان</span> |
|
<button class="bg-green-100 text-green-600 hover:bg-green-200 px-3 py-1 rounded-full text-sm transition duration-300"> |
|
<i class="fas fa-plus ml-1"></i> افزودن |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
|
<div class="relative"> |
|
<img src="https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="زعفران" class="w-full h-48 object-cover"> |
|
</div> |
|
<div class="p-4"> |
|
<h3 class="font-bold text-lg mb-1">زعفران اصل قائنات</h3> |
|
<p class="text-gray-600 text-sm mb-3">درجه یک با عطر و طعم بینظیر</p> |
|
<div class="flex justify-between items-center"> |
|
<span class="font-bold text-green-600">320,000 تومان</span> |
|
<button class="bg-green-100 text-green-600 hover:bg-green-200 px-3 py-1 rounded-full text-sm transition duration-300"> |
|
<i class="fas fa-plus ml-1"></i> افزودن |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"> |
|
<div class="relative"> |
|
<img src="https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="چای سبز" class="w-full h-48 object-cover"> |
|
<div class="absolute top-2 left-2 bg-yellow-500 text-white text-xs px-2 py-1 rounded">تخفیف</div> |
|
</div> |
|
<div class="p-4"> |
|
<h3 class="font-bold text-lg mb-1">چای سبز ارگانیک</h3> |
|
<p class="text-gray-600 text-sm mb-3">آنتیاکسیدان قوی و چربیسوز طبیعی</p> |
|
<div class="flex justify-between items-center"> |
|
<div> |
|
<span class="text-gray-400 line-through text-sm ml-2">75,000 تومان</span> |
|
<span class="font-bold text-green-600">59,000 تومان</span> |
|
</div> |
|
<button class="bg-green-100 text-green-600 hover:bg-green-200 px-3 py-1 rounded-full text-sm transition duration-300"> |
|
<i class="fas fa-plus ml-1"></i> افزودن |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-12 bg-green-50"> |
|
<div class="container mx-auto px-4"> |
|
<div class="bg-white rounded-lg shadow-md overflow-hidden"> |
|
<div class="md:flex"> |
|
<div class="md:w-1/2"> |
|
<img src="https://images.unsplash.com/photo-1519735777090-ec97162dc266?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80" alt="پک ویژه" class="w-full h-full object-cover"> |
|
</div> |
|
<div class="md:w-1/2 p-8"> |
|
<div class="bg-red-100 text-red-600 inline-block px-3 py-1 rounded-full text-sm font-medium mb-4">پیشنهاد ویژه</div> |
|
<h2 class="text-3xl font-bold mb-4">پک سلامتی و آرامش</h2> |
|
<p class="text-gray-600 mb-6">مجموعهای از بهترین گیاهان دارویی برای تقویت سیستم ایمنی و آرامش اعصاب شامل گل گاوزبان، سنبل الطیب، بابونه و بهارنارنج</p> |
|
<div class="flex items-center mb-6"> |
|
<div class="bg-green-100 text-green-600 px-3 py-1 rounded-full font-bold text-lg">25%</div> |
|
<div class="mr-4"> |
|
<span class="text-gray-400 line-through text-lg">220,000 تومان</span> |
|
<span class="text-green-600 font-bold text-xl">165,000 تومان</span> |
|
</div> |
|
</div> |
|
<div class="flex space-x-4 space-x-reverse"> |
|
<button class="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300 flex-1">افزودن به سبد خرید</button> |
|
<button class="border border-green-600 text-green-600 hover:bg-green-50 px-4 py-3 rounded-lg font-medium transition duration-300"> |
|
<i class="far fa-heart"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</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">مقالات گیاهان دارویی</h2> |
|
<a href="#" class="text-green-600 hover:text-green-700 font-medium">مشاهده همه مقالات <i class="fas fa-arrow-left mr-1"></i></a> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
|
|
|
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-300 hover:shadow-lg"> |
|
<img src="https://images.unsplash.com/photo-1587049352851-8d4e89133924?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1587&q=80" alt="مقاله گیاهان دارویی" class="w-full h-48 object-cover"> |
|
<div class="p-6"> |
|
<div class="flex items-center text-sm text-gray-500 mb-3"> |
|
<span>15 مرداد 1402</span> |
|
<span class="mx-2">•</span> |
|
<span>10 دقیقه مطالعه</span> |
|
</div> |
|
<h3 class="font-bold text-xl mb-3">خواص درمانی گل گاوزبان و نحوه مصرف آن</h3> |
|
<p class="text-gray-600 mb-4">گل گاوزبان یکی از مفیدترین گیاهان دارویی برای آرامش اعصاب و کاهش استرس میباشد. در این مقاله به بررسی خواص و نحوه صحیح مصرف آن میپردازیم.</p> |
|
<a href="#" class="text-green-600 hover:text-green-700 font-medium">ادامه مطلب <i class="fas fa-arrow-left mr-1"></i></a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-300 hover:shadow-lg"> |
|
<img src="https://images.unsplash.com/photo-1606761568499-6d2451b23c66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="مقاله گیاهان دارویی" class="w-full h-48 object-cover"> |
|
<div class="p-6"> |
|
<div class="flex items-center text-sm text-gray-500 mb-3"> |
|
<span>5 مرداد 1402</span> |
|
<span class="mx-2">•</span> |
|
<span>8 دقیقه مطالعه</span> |
|
</div> |
|
<h3 class="font-bold text-xl mb-3">چای سبز و نقش آن در لاغری و سلامتی</h3> |
|
<p class="text-gray-600 mb-4">چای سبز با داشتن آنتیاکسیدانهای قوی یکی از بهترین نوشیدنیها برای کاهش وزن و حفظ سلامتی است. در این مقاله به بررسی علمی خواص آن پرداختهایم.</p> |
|
<a href="#" class="text-green-600 hover:text-green-700 font-medium">ادامه مطلب <i class="fas fa-arrow-left mr-1"></i></a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-300 hover:shadow-lg"> |
|
<img src="https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="مقاله گیاهان دارویی" class="w-full h-48 object-cover"> |
|
<div class="p-6"> |
|
<div class="flex items-center text-sm text-gray-500 mb-3"> |
|
<span>25 تیر 1402</span> |
|
<span class="mx-2">•</span> |
|
<span>12 دقیقه مطالعه</span> |
|
</div> |
|
<h3 class="font-bold text-xl mb-3">زعفران، طلای سرخ و خواص شگفتانگیز آن</h3> |
|
<p class="text-gray-600 mb-4">زعفران گرانبهاترین ادویه جهان با خواص درمانی متعدد از جمله ضد افسردگی، تقویت حافظه و بهبود خواب میباشد. در این مقاله به بررسی جامع این گیاه پرداختهایم.</p> |
|
<a href="#" class="text-green-600 hover:text-green-700 font-medium">ادامه مطلب <i class="fas fa-arrow-left mr-1"></i></a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-12 bg-gray-50"> |
|
<div class="container mx-auto px-4"> |
|
<h2 class="text-3xl font-bold text-center mb-12">نظرات مشتریان</h2> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-white p-6 rounded-lg shadow-sm"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center text-green-600 font-bold text-xl">ن</div> |
|
<div class="mr-3"> |
|
<h4 class="font-bold">نرگس محمدی</h4> |
|
<div class="flex text-yellow-400 text-sm"> |
|
<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> |
|
</div> |
|
</div> |
|
<p class="text-gray-600">گیاهان دارویی بسیار باکیفیت و اصل بودند. بستهبندی عالی و ارسال سریع داشتند. حتما دوباره خرید خواهم کرد.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-6 rounded-lg shadow-sm"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center text-green-600 font-bold text-xl">ع</div> |
|
<div class="mr-3"> |
|
<h4 class="font-bold">علی رضایی</h4> |
|
<div class="flex text-yellow-400 text-sm"> |
|
<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> |
|
</div> |
|
</div> |
|
<p class="text-gray-600">پک آرامش بخش رو خریدم واقعا عالی بود. مشاوره خوبی هم دادن که چطور مصرف کنم. ممنون از مجموعه خوبتون.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-6 rounded-lg shadow-sm"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center text-green-600 font-bold text-xl">س</div> |
|
<div class="mr-3"> |
|
<h4 class="font-bold">سارا حسینی</h4> |
|
<div class="flex text-yellow-400 text-sm"> |
|
<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> |
|
</div> |
|
</div> |
|
<p class="text-gray-600">چای سبز ارگانیکشون واقعا با بقیه فرق داره. طعم و عطر عالی داره. قیمتشم نسبت به کیفیتش بسیار مناسب بود.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-12 bg-green-600 text-white"> |
|
<div class="container mx-auto px-4 text-center"> |
|
<h2 class="text-3xl font-bold mb-4">عضویت در خبرنامه</h2> |
|
<p class="max-w-2xl mx-auto mb-8">با عضویت در خبرنامه از جدیدترین محصولات، مقالات و تخفیفهای ویژه ما با خبر شوید.</p> |
|
|
|
<div class="max-w-md mx-auto flex"> |
|
<input type="email" placeholder="آدرس ایمیل شما" class="flex-1 px-4 py-3 rounded-r-lg focus:outline-none text-gray-800"> |
|
<button class="bg-green-800 hover:bg-green-900 px-6 py-3 rounded-l-lg font-medium transition duration-300">عضویت</button> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<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-4 gap-8 mb-8"> |
|
|
|
<div> |
|
<h3 class="text-xl font-bold mb-4">درباره طبیعتگرا</h3> |
|
<p class="text-gray-400 mb-4">فروشگاه اینترنتی طبیعتگرا با هدف ارائه محصولات طبیعی و گیاهان دارویی با کیفیت تأسیس شده است.</p> |
|
<div class="flex space-x-4 space-x-reverse"> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"><i class="fab fa-telegram text-xl"></i></a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"><i class="fab fa-instagram text-xl"></i></a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"><i class="fab fa-whatsapp text-xl"></i></a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div> |
|
<h3 class="text-xl font-bold mb-4">لینکهای سریع</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">صفحه اصلی</a></li> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">محصولات</a></li> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">مقالات</a></li> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">درباره ما</a></li> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">تماس با ما</a></li> |
|
</ul> |
|
</div> |
|
|
|
|
|
<div> |
|
<h3 class="text-xl font-bold mb-4">خدمات مشتریان</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">پرسشهای متداول</a></li> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">رویه بازگرداندن کالا</a></li> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">شرایط و ضوابط</a></li> |
|
<li><a href="#" class="footer-link text-gray-400 hover:text-green-400 transition duration-300">حریم خصوصی</a></li> |
|
</ul> |
|
</div> |
|
|
|
|
|
<div> |
|
<h3 class="text-xl font-bold mb-4">تماس با ما</h3> |
|
<ul class="space-y-3"> |
|
<li class="flex items-center"> |
|
<i class="fas fa-map-marker-alt text-green-400 ml-2"></i> |
|
<span class="text-gray-400">تهران، خیابان ولیعصر، پلاک ۱۲۳۴</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-phone text-green-400 ml-2"></i> |
|
<span class="text-gray-400">۰۲۱-۱۲۳۴۵۶۷۸</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-envelope text-green-400 ml-2"></i> |
|
<span class="text-gray-400">info@tabiatgera.com</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<div class="border-t border-gray-800 pt-6 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-gray-400 text-sm mb-4 md:mb-0">© ۱۴۰۲ کلیه حقوق برای طبیعتگرا محفوظ است.</p> |
|
<div class="flex space-x-6 space-x-reverse"> |
|
<img src="https://logo.samandehi.ir/logo.aspx?id=123456" alt="نماد اعتماد الکترونیکی" class="h-12"> |
|
<img src="https://trustseal.enamad.ir/logo.aspx?id=123456" alt="اینماد" class="h-12"> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
|
|
<div class="fixed bottom-6 left-6 z-50"> |
|
<a href="#" class="bg-green-600 hover:bg-green-700 text-white w-14 h-14 rounded-full flex items-center justify-center shadow-lg transition duration-300"> |
|
<i class="fab fa-whatsapp text-2xl"></i> |
|
</a> |
|
</div> |
|
|
|
<script> |
|
|
|
document.querySelector('header button').addEventListener('click', function() { |
|
const mobileMenu = document.getElementById('mobileMenu'); |
|
mobileMenu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
let cartCount = 3; |
|
const cartBadge = document.querySelector('.cart-badge'); |
|
|
|
document.querySelectorAll('.product-card button, .bg-green-600').forEach(button => { |
|
button.addEventListener('click', function(e) { |
|
e.preventDefault(); |
|
cartCount++; |
|
cartBadge.textContent = cartCount; |
|
|
|
|
|
cartBadge.classList.add('animate-bounce'); |
|
setTimeout(() => { |
|
cartBadge.classList.remove('animate-bounce'); |
|
}, 1000); |
|
}); |
|
}); |
|
</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=Saeidfrj33/https-saeidfrj33-com-static-hf-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |