Initial food blog app

This commit is contained in:
Andy
2026-03-21 11:57:08 +00:00
commit b83762bfc3
33 changed files with 8621 additions and 0 deletions

21
app/types/index.ts Normal file
View File

@@ -0,0 +1,21 @@
export interface Visit {
id: string
date: string // ISO
dishes: string[]
rating: number // 1-10
notes: string
price_paid?: number // optional, in EUR
}
export interface Restaurant {
id: string
name: string
city: string
country: string
address: string
lat: number
lng: number
cuisine: string[]
price_range: 1 | 2 | 3 | 4
visits: Visit[]
}