Files
CrazeAnalytix/components/mkt/data.ts
T

141 lines
3.1 KiB
TypeScript

import { Product } from './types';
export const mockProducts: Product[] = [
{
id: '1',
asin: 'B08F7N8P1Q',
sku: 'SKU-WIDGET-01',
name: 'Premium Widget Pro Max',
image: 'https://picsum.photos/seed/widget1/100/100',
category: 'Electronics',
brand: 'TechCorp',
grossSales: 45000,
unitsSold: 1500,
ppcSpend: 4500,
deals: 1200,
promos: 800,
chargebacks: 300,
chargebacksPrevMonth: 250,
cogs: 15000,
},
{
id: '2',
asin: 'B09G8M7P2R',
sku: 'SKU-GADGET-02',
name: 'Smart Gadget Mini',
image: 'https://picsum.photos/seed/gadget2/100/100',
category: 'Electronics',
brand: 'TechCorp',
grossSales: 12000,
unitsSold: 800,
ppcSpend: 3000,
deals: 500,
promos: 200,
chargebacks: 800,
chargebacksPrevMonth: 400, // Anomaly! > 15% increase
cogs: 6000,
},
{
id: '3',
asin: 'B07H6L5P3S',
sku: 'SKU-HOME-03',
name: 'Ergonomic Office Chair',
image: 'https://picsum.photos/seed/chair3/100/100',
category: 'Home & Office',
brand: 'HomePlus',
grossSales: 85000,
unitsSold: 425,
ppcSpend: 8500,
deals: 2000,
promos: 1500,
chargebacks: 1200,
chargebacksPrevMonth: 1100,
cogs: 35000,
},
{
id: '4',
asin: 'B06J5K4P4T',
sku: 'SKU-KITCHEN-04',
name: 'Stainless Steel Knife Set',
image: 'https://picsum.photos/seed/knife4/100/100',
category: 'Kitchen',
brand: 'ChefMaster',
grossSales: 28000,
unitsSold: 700,
ppcSpend: 4200,
deals: 800,
promos: 600,
chargebacks: 150,
chargebacksPrevMonth: 160,
cogs: 9000,
},
{
id: '5',
asin: 'B05K4J3P5U',
sku: 'SKU-FITNESS-05',
name: 'Yoga Mat Extra Thick',
image: 'https://picsum.photos/seed/yoga5/100/100',
category: 'Fitness',
brand: 'FitLife',
grossSales: 15000,
unitsSold: 600,
ppcSpend: 3500,
deals: 1000,
promos: 500,
chargebacks: 400,
chargebacksPrevMonth: 380,
cogs: 5000,
},
{
id: '6',
asin: 'B04L3H2P6V',
sku: 'SKU-BEAUTY-06',
name: 'Organic Face Serum',
image: 'https://picsum.photos/seed/serum6/100/100',
category: 'Beauty',
brand: 'NatureGlow',
grossSales: 32000,
unitsSold: 1280,
ppcSpend: 2800,
deals: 500,
promos: 300,
chargebacks: 100,
chargebacksPrevMonth: 90,
cogs: 8000,
},
{
id: '7',
asin: 'B03M2G1P7W',
sku: 'SKU-TOY-07',
name: 'Educational Building Blocks',
image: 'https://picsum.photos/seed/toy7/100/100',
category: 'Toys',
brand: 'KidGenius',
grossSales: 9500,
unitsSold: 380,
ppcSpend: 2500,
deals: 400,
promos: 200,
chargebacks: 50,
chargebacksPrevMonth: 45,
cogs: 4000,
},
{
id: '8',
asin: 'B02N1F0P8X',
sku: 'SKU-PET-08',
name: 'Automatic Pet Feeder',
image: 'https://picsum.photos/seed/pet8/100/100',
category: 'Pet Supplies',
brand: 'PetCare',
grossSales: 42000,
unitsSold: 840,
ppcSpend: 6000,
deals: 1500,
promos: 1000,
chargebacks: 600,
chargebacksPrevMonth: 550,
cogs: 18000,
}
];