diff --git a/components/product-grid.tsx b/components/product-grid.tsx new file mode 100644 index 0000000..470132c --- /dev/null +++ b/components/product-grid.tsx @@ -0,0 +1,90 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { Badge } from "@/components/badge"; +import { Button } from "@/components/ui/button"; +import Image from "next/image"; + +const products = [ + { + id: 1, + name: "Gourmet Whole Bean", + category: "Coffee", + price: "$18.99", + image: "https://images.unsplash.com/photo-1559056199-641a0ac8b55e?q=80&w=2070&auto=format&fit=crop", + tag: "Best Seller" + }, + { + id: 2, + name: "Biodegradable Pods", + category: "Eco-Friendly", + price: "$14.50", + image: "https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?q=80&w=1974&auto=format&fit=crop", + tag: "Sustainable" + }, + { + id: 3, + name: "Coffee Cookies", + category: "Snacks", + price: "$8.99", + image: "https://images.unsplash.com/photo-1499636136210-6f4ee915583e?q=80&w=1964&auto=format&fit=crop", + tag: "Artisan" + }, + { + id: 4, + name: "Quindío Gift Set", + category: "Bundles", + price: "$45.00", + image: "https://images.unsplash.com/photo-1544787210-2827443cb69b?q=80&w=2022&auto=format&fit=crop", + tag: "Gift Idea" + } +]; + +export function ProductGrid() { + return ( +
+ +
+
+ Our Collection + Premium Colombian Selection +
+ +
+ +
+ {products.map((product) => ( + + +
+ {product.name} +
+ + {product.tag} + +
+
+
+ +

{product.category}

+ {product.name} +

{product.price}

+
+ + + +
+ ))} +
+
+
+ ); +}