Updates
Some checks failed
CI / Frontend (lint + typecheck) (push) Failing after 3m45s
CI / Rust (lint + test) (push) Failing after 5m15s
CI / Python (lint + test) (push) Failing after 5m17s
Build and publish Docker image / build-and-push (push) Failing after 7m15s

This commit is contained in:
Andras Schmelczer 2026-03-28 12:00:15 +00:00
parent 7591e5fc05
commit 89a85e9a0c
22 changed files with 1006 additions and 899 deletions

View file

@ -4,7 +4,7 @@ import { CarIcon, BicycleIcon, WalkingIcon, TransitIcon } from '../components/ui
export type TransportMode = 'car' | 'bicycle' | 'walking' | 'transit';
export const TRANSPORT_MODES: TransportMode[] = ['car', 'bicycle', 'walking', 'transit'];
export const TRANSPORT_MODES: TransportMode[] = ['transit', 'car', 'bicycle', 'walking'];
export const MODE_LABELS: Record<TransportMode, string> = {
car: 'Car',

View file

@ -9,7 +9,7 @@ const STEPS: Step[] = [
target: '[data-tutorial="filters"]',
title: 'Tell the map what matters',
content:
'Set your budget, commute limit, school quality, crime threshold \u2014 whatever matters to you. Only areas that qualify stay lit. Use the eye icon to colour by any feature.',
'Set your budget, commute limit, school quality, crime threshold. Whatever matters to you. Only areas that qualify stay lit. Use the eye icon to colour by any feature.',
placement: 'right',
disableBeacon: true,
},
@ -17,7 +17,7 @@ const STEPS: Step[] = [
target: '[data-tutorial="ai-filters"]',
title: 'Or just describe it',
content:
'Type what you want in plain English \u2014 like "quiet area near good schools under \u00A3400k" \u2014 and we\u2019ll set up the filters for you.',
'Type what you want in plain English, like "quiet area near good schools under \u00A3400k", and we\u2019ll set up the filters for you.',
placement: 'right',
disableBeacon: true,
},
@ -25,7 +25,7 @@ const STEPS: Step[] = [
target: '[data-tutorial="map"]',
title: 'Explore what\u2019s out there',
content:
'Pan and zoom across England. Click any coloured area to see crime, schools, prices, broadband, noise \u2014 everything about that neighbourhood.',
'Pan and zoom across England. Click any coloured area to see crime, schools, prices, broadband, noise, and more about that neighbourhood.',
placement: 'bottom',
disableBeacon: true,
},
@ -40,7 +40,7 @@ const STEPS: Step[] = [
target: '[data-tutorial="right-pane"]',
title: 'Dig into the details',
content:
'See area statistics, histograms, and individual property records \u2014 prices, floor area, energy ratings, and more.',
'See area statistics, histograms, and individual property records: prices, floor area, energy ratings, and more.',
placement: 'left',
disableBeacon: true,
},