Added About Page

This commit is contained in:
2025-09-18 17:41:24 +10:00
parent 3a5f5ff0b7
commit ee1436c6f0
12 changed files with 161 additions and 8 deletions

View File

@@ -53,6 +53,20 @@ export interface Country {
continent: Continent;
}
/*
'tour_id',
'description',
'content',
'image',
*/
export interface TourDay {
id: number
tour_id: number
description: string
content: string
image: string | null
}
export interface Tour {
id: number
name: string
@@ -61,5 +75,8 @@ export interface Tour {
price: number
level: string
short_description: string
countries: ?Country[]
countries: Country[] | null
tour_days: TourDay[] | null
}