export const products = Array.from({ length: 1000 }, (_, index) => ({ id: index + 1, name: `Product ${index + 1}`, price: 990 + index * 10, })); export const usageCode = `