Wire dashboards to the API and add customer portal plus discounts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-08-05 15:15:16 +03:30
co-authored by Cursor
parent af11d96fd0
commit b103e330ef
73 changed files with 8720 additions and 1605 deletions
+6
View File
@@ -0,0 +1,6 @@
import type { Flavor } from '../data/flavors'
import { apiRequest } from './api'
export function listFlavors() {
return apiRequest<Flavor[]>('/flavors')
}