diff --git a/src/app/page.tsx b/src/app/page.tsx index 1fe2dfa..c734325 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -115,13 +115,13 @@ export default function HomePage() { tagIcon={TrendingUp} products={[ { - id: "1", name: "Wireless Smart Earbuds Pro", price: "$59.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png", imageAlt: "Trending wireless earbuds with active noise cancellation" + id: "1", name: "Wireless Smart Earbuds Pro", price: "$59.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png?_wi=1", imageAlt: "Trending wireless earbuds with active noise cancellation" }, { - id: "2", name: "Portable Power Bank 20000mAh", price: "$24.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png", imageAlt: "High-capacity portable power bank for mobile devices" + id: "2", name: "Portable Power Bank 20000mAh", price: "$24.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png?_wi=1", imageAlt: "High-capacity portable power bank for mobile devices" }, { - id: "3", name: "LED Desk Lamp with USB Charging", price: "$34.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png", imageAlt: "Modern LED desk lamp with built-in USB charging port" + id: "3", name: "LED Desk Lamp with USB Charging", price: "$34.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png?_wi=1", imageAlt: "Modern LED desk lamp with built-in USB charging port" } ]} gridVariant="three-columns-all-equal-width" diff --git a/src/app/products/[id]/page.tsx b/src/app/products/[id]/page.tsx index 7710865..5bf9125 100644 --- a/src/app/products/[id]/page.tsx +++ b/src/app/products/[id]/page.tsx @@ -28,7 +28,7 @@ interface ProductDetails { const productDatabase: Record = { "1": { id: "1", name: "Wireless Smart Earbuds Pro", price: "$59.99", originalPrice: "$99.99", rating: 4, - reviews: "2.3k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png", imageAlt: "Wireless Smart Earbuds Pro", category: "Electronics", description: "Experience premium audio with active noise cancellation, 30-hour battery life, and seamless connectivity. Perfect for daily commutes and workouts.", features: [ + reviews: "2.3k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png?_wi=5", imageAlt: "Wireless Smart Earbuds Pro", category: "Electronics", description: "Experience premium audio with active noise cancellation, 30-hour battery life, and seamless connectivity. Perfect for daily commutes and workouts.", features: [ "Active Noise Cancellation (ANC)", "30-hour battery life with charging case", "IPX4 water resistant", "Touch controls and voice assistant", "Premium sound quality with deep bass", "Fast charging - 5 minutes for 1 hour"], specifications: { "Driver Size": "12mm", "Frequency Response": "20Hz - 20kHz", "Battery Life (Single Charge)": "8 hours", "Total Battery Life": "30 hours with case", "Connectivity": "Bluetooth 5.2", "Weight": "3.5g per earbud", "Color Options": "Black, White, Blue", "Warranty": "2-year manufacturer warranty"}, @@ -36,7 +36,7 @@ const productDatabase: Record = { affiliateUrl: "https://amazon.com/s?k=wireless+earbuds"}, "2": { id: "2", name: "Portable Power Bank 20000mAh", price: "$24.99", originalPrice: "$39.99", rating: 5, - reviews: "5.1k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png", imageAlt: "Portable Power Bank 20000mAh", category: "Electronics", description: "Keep your devices charged on the go with this high-capacity power bank. Dual USB ports support fast charging for two devices simultaneously.", features: [ + reviews: "5.1k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png?_wi=5", imageAlt: "Portable Power Bank 20000mAh", category: "Electronics", description: "Keep your devices charged on the go with this high-capacity power bank. Dual USB ports support fast charging for two devices simultaneously.", features: [ "20000mAh high capacity", "Dual USB output ports", "Fast charging support (18W)", "LED display shows remaining charge", "Compact and lightweight design", "Multiple protection features", "1-year warranty included"], specifications: { "Capacity": "20000mAh", "Input": "USB Type-C / Micro USB", "Output": "2x USB-A (5V/2.1A)", "Weight": "340g", "Dimensions": "152 x 72 x 23mm", "Charging Time": "6 hours full charge", "Compatibility": "All smartphones and tablets", "Colors": "Black, White, Gold"}, @@ -44,7 +44,7 @@ const productDatabase: Record = { affiliateUrl: "https://amazon.com/s?k=power+bank"}, "3": { id: "3", name: "LED Desk Lamp with USB Charging", price: "$34.99", originalPrice: "$54.99", rating: 4, - reviews: "892", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png", imageAlt: "LED Desk Lamp with USB Charging", category: "Home & Office", description: "Modern LED desk lamp with built-in USB charging port for convenient device charging while you work. Features adjustable brightness and color temperature.", features: [ + reviews: "892", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png?_wi=4", imageAlt: "LED Desk Lamp with USB Charging", category: "Home & Office", description: "Modern LED desk lamp with built-in USB charging port for convenient device charging while you work. Features adjustable brightness and color temperature.", features: [ "3 brightness levels", "3 color temperature modes (Warm, Natural, Cool)", "Built-in USB charging port", "Touch control panel", "Memory function remembers your settings", "Energy-efficient LED bulbs", "Eye-care technology reduces eye strain"], specifications: { "Power": "8W LED", "Color Temperature": "2700K - 6500K", "Brightness Levels": "3 modes", "USB Output": "5V/1A", "Cable Length": "1.5m", "Material": "Aluminum + Plastic", "Dimensions": "15 x 22 x 45cm", "Weight": "450g"}, diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 9584bc3..12efe22 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -21,28 +21,28 @@ interface Product { const allProducts: Product[] = [ { - id: "1", name: "Wireless Smart Earbuds Pro", price: "$59.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png", imageAlt: "Trending wireless earbuds with active noise cancellation", category: "Electronics", rating: 4, + id: "1", name: "Wireless Smart Earbuds Pro", price: "$59.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png?_wi=2", imageAlt: "Trending wireless earbuds with active noise cancellation", category: "Electronics", rating: 4, reviews: "2.3k"}, { - id: "2", name: "Portable Power Bank 20000mAh", price: "$24.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png", imageAlt: "High-capacity portable power bank for mobile devices", category: "Electronics", rating: 5, + id: "2", name: "Portable Power Bank 20000mAh", price: "$24.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png?_wi=2", imageAlt: "High-capacity portable power bank for mobile devices", category: "Electronics", rating: 5, reviews: "5.1k"}, { - id: "3", name: "LED Desk Lamp with USB Charging", price: "$34.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png", imageAlt: "Modern LED desk lamp with built-in USB charging port", category: "Home & Office", rating: 4, + id: "3", name: "LED Desk Lamp with USB Charging", price: "$34.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png?_wi=2", imageAlt: "Modern LED desk lamp with built-in USB charging port", category: "Home & Office", rating: 4, reviews: "892"}, { - id: "4", name: "Ergonomic Wireless Mouse", price: "$29.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png", imageAlt: "Ergonomic wireless mouse for productivity", category: "Electronics", rating: 5, + id: "4", name: "Ergonomic Wireless Mouse", price: "$29.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png?_wi=3", imageAlt: "Ergonomic wireless mouse for productivity", category: "Electronics", rating: 5, reviews: "1.8k"}, { - id: "5", name: "Stainless Steel Water Bottle", price: "$19.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png", imageAlt: "Insulated stainless steel water bottle", category: "Sports & Outdoors", rating: 4, + id: "5", name: "Stainless Steel Water Bottle", price: "$19.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png?_wi=3", imageAlt: "Insulated stainless steel water bottle", category: "Sports & Outdoors", rating: 4, reviews: "3.2k"}, { - id: "6", name: "Memory Foam Pillow Set", price: "$49.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png", imageAlt: "Comfortable memory foam pillow set", category: "Home & Office", rating: 5, + id: "6", name: "Memory Foam Pillow Set", price: "$49.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/fashion-or-accessories-product-image-sho-1772797252391-aef17d9d.png?_wi=3", imageAlt: "Comfortable memory foam pillow set", category: "Home & Office", rating: 5, reviews: "4.5k"}, { - id: "7", name: "Bluetooth Portable Speaker", price: "$39.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png", imageAlt: "Portable Bluetooth speaker with 360 sound", category: "Electronics", rating: 4, + id: "7", name: "Bluetooth Portable Speaker", price: "$39.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/high-quality-product-image-of-trending-c-1772797250769-19781c41.png?_wi=4", imageAlt: "Portable Bluetooth speaker with 360 sound", category: "Electronics", rating: 4, reviews: "2.7k"}, { - id: "8", name: "Yoga Mat with Carrying Strap", price: "$22.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png", imageAlt: "Non-slip yoga mat with carrying strap", category: "Sports & Outdoors", rating: 4, + id: "8", name: "Yoga Mat with Carrying Strap", price: "$22.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZPWQCWDl0BG7OaRt0W4bMN2B9/lifestyle-product-image-showing-popular--1772797252162-c42c95c9.png?_wi=4", imageAlt: "Non-slip yoga mat with carrying strap", category: "Sports & Outdoors", rating: 4, reviews: "1.6k"}, ];