This commit is contained in:
2025-02-08 14:24:51 -06:00
parent d643be301f
commit 769e99d4c3
136 changed files with 3759 additions and 444 deletions
+34 -45
View File
@@ -1,6 +1,8 @@
import { motion, AnimatePresence } from 'framer-motion';
import Image from 'next/image';
import type { Product } from '@/types/product';
import AwesomeSlider from 'react-awesome-slider';
import "keen-slider/keen-slider.min.css"
interface ProductModalProps {
product: Product | null;
@@ -16,56 +18,43 @@ const ProductModal = ({ product, onClose }: ProductModalProps) => {
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="fixed inset-0 z-50 overflow-y-auto bg-black bg-opacity-50 backdrop-blur-sm"
className="fixed inset-0 z-50 overflow-y-auto bg-black bg-opacity-50 backdrop-blur-sm flex items-center justify-center"
onClick={onClose}
>
<div className="min-h-screen px-4 text-center">
<motion.div
initial={{ scale: 0.95, opacity: 0 }}
animate={{ scale: 1, opacity: 1 }}
exit={{ scale: 0.95, opacity: 0 }}
className="inline-block w-full max-w-2xl p-6 my-8 text-left align-middle bg-white rounded-lg shadow-xl"
onClick={(e) => e.stopPropagation()}
<motion.div
initial={{ scale: 0.95, opacity: 0 }}
animate={{ scale: 1, opacity: 1 }}
exit={{ scale: 0.95, opacity: 0 }}
className="inline-block w-full max-w-2xl p-6 my-8 text-left align-middle bg-white rounded-lg shadow-xl"
onClick={(e) => e.stopPropagation()}
>
<div className="relative h-80 mb-6">
<AwesomeSlider cssModule={AwesomeSlider}>
{product.images.map((imgUrl, index) => (
<div
key={index}
data-src={imgUrl}
className="w-full h-full bg-cover bg-center"
/>
))}
</AwesomeSlider>
</div>
<div className="flex justify-between items-start mb-4">
<h3 className="font-sans text-2xl text-bakery-800">{product.name}</h3>
{/* <span className="text-bakery-600 text-xl font-semibold">{product.price}</span> */}
</div>
<button
onClick={onClose}
className="mt-6 w-full bg-bakery-600 text-white py-3 rounded-md hover:bg-bakery-700 transition-colors"
>
<div className="relative h-80 mb-6">
<Image
src={product.image}
alt={product.name}
fill
className="object-cover rounded-lg"
/>
</div>
<div className="flex justify-between items-start mb-4">
<h3 className="font-serif text-2xl text-bakery-800">{product.name}</h3>
<span className="text-bakery-600 text-xl font-semibold">{product.price}</span>
</div>
<p className="text-bakery-600/80 mb-6">{product.description}</p>
<div className="space-y-4">
<div>
<h4 className="font-medium text-bakery-800 mb-2">Ingrédients</h4>
<p className="text-bakery-600/80">{product.ingredients}</p>
</div>
<div>
<h4 className="font-medium text-bakery-800 mb-2">Conservation</h4>
<p className="text-bakery-600/80">{product.storage}</p>
</div>
</div>
<button
onClick={onClose}
className="mt-6 w-full bg-bakery-600 text-white py-3 rounded-md hover:bg-bakery-700 transition-colors"
>
Fermer
</button>
</motion.div>
</div>
Close
</button>
</motion.div>
</motion.div>
</AnimatePresence>
);
};
export default ProductModal;
export default ProductModal;