Add UI to trips

This commit is contained in:
Logan
2026-06-21 10:12:33 -04:00
parent 8edb717dd2
commit 7b9aefbcc5
8 changed files with 1078 additions and 221 deletions
+13 -1
View File
@@ -103,15 +103,27 @@ export interface TripEvent {
trip_id: string;
title: string;
date: string;
time: string | null;
start_time: string | null;
end_time: string | null;
location: string;
location_inherited: boolean;
maps_link: string | null;
place_id: string | null;
notes: string | null;
attendees: Record<string, string>;
created_at: string;
}
export interface PlaceResult {
name: string;
address: string;
place_id: string;
lat: number;
lng: number;
maps_link: string;
rating?: number;
}
export interface TripRecord {
trip_id: string;
name: string;