feat: redesign dashboard around place search

This commit is contained in:
zv
2026-06-01 19:05:31 +02:00
parent 6c2e731c60
commit 0632c67beb
18 changed files with 374 additions and 139 deletions

16
types/location.ts Normal file
View File

@@ -0,0 +1,16 @@
export interface LocationSearchResult {
id: number;
name: string;
latitude: number;
longitude: number;
province: string | null;
district: string | null;
}
export interface SelectedLocation {
name: string;
province: string | null;
stationId: string;
stationName: string;
distanceKm: number;
}