changed some color and fix some styles

This commit is contained in:
@jcarymuhammedow
2026-02-07 16:06:33 +05:00
parent 022c7290b4
commit b27b8436d1
34 changed files with 999 additions and 368 deletions

View File

@@ -9,13 +9,12 @@ export interface ProductMedia {
images_720x720: string;
images_800x800: string;
images_1200x1200: string;
}
export interface Carousel {
title: string
image: string
url?: string | null
title: string;
image: string;
url?: string | null;
thumbnail: string;
link: string;
}
@@ -27,7 +26,6 @@ export interface Review {
created_at: string;
}
export type DeliveryType = "SELECTED_DELIVERY" | "PICK_UP";
export interface PaymentType {
@@ -105,8 +103,7 @@ export interface Category {
image: string;
parent_id?: number | null;
children?: Category[];
media:ProductMedia[];
media: ProductMedia[];
}
// Collection Types
@@ -132,6 +129,7 @@ export interface CartProduct {
stock: number;
image?: string;
images?: string[];
description?: string;
}
export interface CartItem {
@@ -150,6 +148,7 @@ export interface CartItem {
sub_total_formatted: string;
total_formatted: string;
discount_formatted: string;
description?: string;
}
export interface CartResponse {
@@ -512,7 +511,6 @@ export interface FiltersResponse {
};
}
export interface ProductFilters {
brands?: number[];
categories?: number[];
@@ -520,5 +518,5 @@ export interface ProductFilters {
max_price?: number;
page?: number;
limit?: number;
collection_id?: number;
collection_id?: number;
}