diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7933cd8..9bae76c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -141,10 +141,10 @@ export default function HomePage() {
{[
- { name: "iPhone 15 Pro Max", price: "5,999 dh", oldPrice: "6,999 dh", discount: "-14%", image: "http://img.b2bpic.net/free-vector/modern-concept-set-smart-phones-collection-with-two-realistic-black-mobile-phones-with-stylish-large-displays-grey_1284-49100.jpg" },
- { name: "MacBook Pro 16\"", price: "12,999 dh", oldPrice: "14,999 dh", discount: "-13%", image: "http://img.b2bpic.net/free-photo/grey-laptop-table_23-2148189995.jpg" },
- { name: "Samsung Galaxy S24", price: "4,499 dh", oldPrice: "5,299 dh", discount: "-15%", image: "http://img.b2bpic.net/free-vector/futuristic-mobile-technology-with-circuit-lines_1017-30932.jpg" },
- { name: "iPad Pro 12.9\"", price: "7,999 dh", oldPrice: "9,499 dh", discount: "-16%", image: "http://img.b2bpic.net/free-photo/close-up-technological-devices-wooden-desk_1232-474.jpg" },
+ { name: "iPhone 15 Pro Max", price: "5,999 dh", oldPrice: "6,999 dh", discount: "-14%", stock: "Only 3 left", image: "http://img.b2bpic.net/free-vector/modern-concept-set-smart-phones-collection-with-two-realistic-black-mobile-phones-with-stylish-large-displays-grey_1284-49100.jpg" },
+ { name: "MacBook Pro 16\"", price: "12,999 dh", oldPrice: "14,999 dh", discount: "-13%", stock: "Limited Stock", image: "http://img.b2bpic.net/free-photo/grey-laptop-table_23-2148189995.jpg" },
+ { name: "Samsung Galaxy S24", price: "4,499 dh", oldPrice: "5,299 dh", discount: "-15%", stock: "Only 5 left", image: "http://img.b2bpic.net/free-vector/futuristic-mobile-technology-with-circuit-lines_1017-30932.jpg" },
+ { name: "iPad Pro 12.9\"", price: "7,999 dh", oldPrice: "9,499 dh", discount: "-16%", stock: "Only 2 left", image: "http://img.b2bpic.net/free-photo/close-up-technological-devices-wooden-desk_1232-474.jpg" },
].map((product, idx) => (
{product.discount}
+
+ {product.stock}
+
{product.name}