feat: implement store home page with product listing, pagination, and error handling

This commit is contained in:
2026-06-30 08:47:57 -03:00
parent b2796a2383
commit 74144b6d2c
4 changed files with 36 additions and 12 deletions

View File

@@ -1,11 +1,13 @@
export interface Product {
id: number;
tenant_codigo: string;
categoria_id: number;
category_id: number;
brand_id: number | null;
slug: string;
nombre: string;
descripcion?: string;
descripcion: string;
precio: string;
created_at?: string;
updated_at?: string;
category: string;
brand: string | null;
images: string[];
}