update 15/01

This commit is contained in:
2026-01-15 17:30:04 +07:00
parent f5de4a5313
commit b921d73f73
20 changed files with 618 additions and 259 deletions

12
src/types/product.ts Normal file
View File

@@ -0,0 +1,12 @@
// src/types/deal.ts
export type ProductItemProps = {
price: number;
quantity: number;
productUrl: string;
productImage: string;
productName: string;
marketPrice : number;
specialOffer : string;
warranty: string;
productSummary: string;
};