From 8db377d5eb664efdace6cb380a3537afc1c1deba Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Wed, 2 Sep 2026 12:15:21 -0700 Subject: [PATCH] Update careers map locations Replace Szczecin with Warsaw, add Helsinki, and correct the San Francisco and New York City dots. San Francisco previously sat north of New York City on the map despite being roughly three degrees south of it. Co-Authored-By: Claude Opus 5 (1M context) --- src/data/career-locations.ts | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/data/career-locations.ts b/src/data/career-locations.ts index 920f406e..1c6dde05 100644 --- a/src/data/career-locations.ts +++ b/src/data/career-locations.ts @@ -9,20 +9,26 @@ export const careerLocations: readonly CareerLocation[] = [ { city: "San Francisco", countryCode: "US", - x: 15, - y: 27, + x: 14, + y: 28, }, { city: "New York City", countryCode: "US", - x: 43, - y: 29, + x: 44, + y: 28, }, { - city: "Szczecin", + city: "Warsaw", countryCode: "PL", - x: 98, - y: 19, + x: 100, + y: 20, + }, + { + city: "Helsinki", + countryCode: "FI", + x: 102, + y: 16, }, ];