diff --git a/components/featured-products.tsx b/components/featured-products.tsx new file mode 100644 index 0000000..4b624a8 --- /dev/null +++ b/components/featured-products.tsx @@ -0,0 +1,62 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { ProductCard } from "@/components/product-card"; + +const featuredProducts = [ + { + id: "1", + name: "Modern Velvet Sofa", + price: 899, + originalPrice: 1299, + image: "https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=600&q=80", + category: "Living Room", + isSale: true, + }, + { + id: "2", + name: "Scandinavian Dining Table", + price: 649, + image: "https://images.unsplash.com/photo-1617806118233-18e1de247200?w=600&q=80", + category: "Dining Room", + isNew: true, + }, + { + id: "3", + name: "Luxury King Bed Frame", + price: 1199, + originalPrice: 1499, + image: "https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=600&q=80", + category: "Bedroom", + isSale: true, + }, + { + id: "4", + name: "Ergonomic Office Chair", + price: 349, + image: "https://images.unsplash.com/photo-1580480055273-228ff5388ef8?w=600&q=80", + category: "Office", + isNew: true, + }, +]; + +export function FeaturedProducts() { + return ( +
+ +
+ Featured Products + + Handpicked favorites from our latest collection + +
+
+ {featuredProducts.map((product) => ( + + ))} +
+
+
+ ); +}