From 1112ad5c50531ae6f31902f3c4583c2bc34f7018 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:40 +0000 Subject: [PATCH] Update lib/products.ts --- lib/products.ts | 73 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 lib/products.ts diff --git a/lib/products.ts b/lib/products.ts new file mode 100644 index 0000000..b69d570 --- /dev/null +++ b/lib/products.ts @@ -0,0 +1,73 @@ +export interface Product { + id: string; + name: string; + price: string; + image: string; + category: string; + rating: number; + description: string; + affiliateLink: string; +} + +export const products: Product[] = [ + { + id: "1", + name: "Premium Wireless Headphones", + price: "$199.99", + image: "https://images.unsplash.com/photo-1505740420928-5e560c06d30e?q=80&w=1000&auto=format&fit=crop", + category: "Electronics", + rating: 4.8, + description: "Experience crystal clear sound with our premium wireless headphones. Features active noise cancellation and 40-hour battery life.", + affiliateLink: "https://amazon.com" + }, + { + id: "2", + name: "Smart Fitness Watch", + price: "$129.00", + image: "https://images.unsplash.com/photo-1523275335684-37898b6baf30?q=80&w=1000&auto=format&fit=crop", + category: "Electronics", + rating: 4.5, + description: "Track your health and fitness with precision. Waterproof design with heart rate monitoring and GPS.", + affiliateLink: "https://amazon.com" + }, + { + id: "3", + name: "Minimalist Leather Backpack", + price: "$85.00", + image: "https://images.unsplash.com/photo-1548036328-c9fa89d128fa?q=80&w=1000&auto=format&fit=crop", + category: "Fashion", + rating: 4.7, + description: "Durable and stylish leather backpack for daily use. Fits up to a 15-inch laptop.", + affiliateLink: "https://amazon.com" + }, + { + id: "4", + name: "Professional DSLR Camera", + price: "$1,200.00", + image: "https://images.unsplash.com/photo-1516035069371-29a1b244cc32?q=80&w=1000&auto=format&fit=crop", + category: "Electronics", + rating: 4.9, + description: "Capture stunning photos and videos with this high-performance DSLR camera.", + affiliateLink: "https://amazon.com" + }, + { + id: "5", + name: "Organic Cotton T-Shirt", + price: "$25.00", + image: "https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?q=80&w=1000&auto=format&fit=crop", + category: "Fashion", + rating: 4.3, + description: "Soft, breathable, and eco-friendly organic cotton t-shirt for everyday comfort.", + affiliateLink: "https://amazon.com" + }, + { + id: "6", + name: "Modern Ceramic Vase", + price: "$45.00", + image: "https://images.unsplash.com/photo-1580480055273-228ff5388ef8?q=80&w=1000&auto=format&fit=crop", + category: "Home", + rating: 4.6, + description: "Elegant ceramic vase to complement any modern home decor.", + affiliateLink: "https://amazon.com" + } +]; \ No newline at end of file