Site için geliştirmeler yapıldı.

This commit is contained in:
2026-01-06 23:45:38 +03:00
parent 96f195ffa6
commit 18023550e0
26 changed files with 971 additions and 56 deletions

12
types/product.ts Normal file
View File

@@ -0,0 +1,12 @@
export type Product = {
id: number
name: string
category: string
description: string | null
image_url: string | null
price: number | null
created_at: string
}
export type ProductInsert = Omit<Product, 'id' | 'created_at'>
export type ProductUpdate = Partial<ProductInsert>