All changes

This commit is contained in:
Andras Schmelczer 2026-03-14 21:36:00 +00:00
parent 593f380581
commit 49f7ec2f5a
60 changed files with 1783 additions and 679 deletions

View file

@ -11,6 +11,13 @@ export const MODE_LABELS: Record<TransportMode, string> = {
transit: 'Transit',
};
export const MODE_DESCRIPTIONS: Record<TransportMode, string> = {
car: 'Drive time via the fastest road route',
bicycle: 'Cycling time using bike-friendly routes',
walking: 'Walking time along pedestrian paths and pavements',
transit: 'Journey time by train, tube, and bus',
};
export interface TravelTimeEntry {
mode: TransportMode;
slug: string;