diff --git a/clavitor.com/clavitor-web-linux-amd64 b/clavitor.com/clavitor-web-linux-amd64 index 6d3487d..8b16e8b 100755 Binary files a/clavitor.com/clavitor-web-linux-amd64 and b/clavitor.com/clavitor-web-linux-amd64 differ diff --git a/clavitor.com/clavitor.db-shm b/clavitor.com/clavitor.db-shm index b2e57b4..7600e2f 100644 Binary files a/clavitor.com/clavitor.db-shm and b/clavitor.com/clavitor.db-shm differ diff --git a/clavitor.com/templates/hosted.tmpl b/clavitor.com/templates/hosted.tmpl index 6c9c800..3d2aec4 100644 --- a/clavitor.com/templates/hosted.tmpl +++ b/clavitor.com/templates/hosted.tmpl @@ -116,14 +116,19 @@ Your regionBackup locationWhy - {{range .Pops}}{{if eq .Status "live"}} + {{range .Pops}}{{if or (eq .Status "live") (eq .City "Dubai") (eq .City "Bogotá") (eq .City "Almaty") (eq .City "Istanbul")}} {{if eq .City "Zürich"}}{{.City}}Calgary, CanadaOpposite continent, inland {{else if eq .City "Calgary"}}{{.City}}Zürich, SwitzerlandOpposite continent, inland - {{else if or (eq .Country "JP") (eq .Country "KR") (eq .Country "AU") (eq .Country "SG") (eq .Country "IN") (eq .Country "HK") (eq .Country "ZA") (eq .Country "NG") (eq .Country "SE")}}{{.City}}Calgary, CanadaFarthest inland site - {{else}}{{.City}}Zürich, SwitzerlandFarthest inland site + {{else if or (eq .Country "JP") (eq .Country "KR") (eq .Country "AU") (eq .Country "SG") (eq .Country "IN") (eq .Country "HK") (eq .Country "ZA") (eq .Country "NG") (eq .Country "SE") (eq .Country "AE") (eq .Country "TR") (eq .Country "KZ")}}{{.City}}{{if ne .Status "live"}} (planned){{end}}Calgary, CanadaFarthest inland site + {{else}}{{.City}}{{if ne .Status "live"}} (planned){{end}}Zürich, SwitzerlandFarthest inland site {{end}}{{end}}{{end}} +
+

Dubai (me-central-1) — temporarily unavailable

+

On March 1, 2026, drone strikes physically damaged two of three AWS availability zones in the UAE. Both AWS Middle East regions (UAE and Bahrain) remain offline. We are waiting for AWS to restore service before we can offer Dubai as a region again. No customer data was affected — this is exactly why we replicate every vault to an inland backup site on the other side of the world.

+

If you were planning to use Dubai, the nearest alternatives are Mumbai, Istanbul, and Almaty. If you need to transfer an existing vault to a different region, we will do it for free — contact support@clavitor.ai.

+

@@ -158,13 +163,14 @@ const [x, y] = project(pop.lon, pop.lat); const isHQ = pop.city === 'Zürich'; const isLive = pop.status === 'live'; - const dotColor = isHQ ? '#0A0A0A' : isLive ? '#DC2626' : '#F5B7B7'; - const textColor = isHQ ? '#0A0A0A' : isLive ? '#B91C1C' : '#777777'; + const isDubai = pop.city === 'Dubai'; + const dotColor = isDubai ? '#ca8a04' : isHQ ? '#0A0A0A' : isLive ? '#DC2626' : '#F5B7B7'; + const textColor = isDubai ? '#ca8a04' : isHQ ? '#0A0A0A' : isLive ? '#B91C1C' : '#777777'; const pulseColor = isHQ ? '#0A0A0A' : isLive ? '#DC2626' : '#F5B7B7'; const dotSize = isHQ ? 11 : 9; const pulseR = isHQ ? 5 : 4; const pulseMax = isHQ ? 18 : 13; - const tooltip = isLive ? pop.city + ' · Live' : pop.city + ' · Planned · Q2 2026'; + const tooltip = isDubai ? 'Dubai · Temporarily unavailable — AWS me-central-1 damaged by drone strikes (March 2026)' : isLive ? pop.city + ' · Live' : pop.city + ' · Planned'; // Pulse rings — only for live/HQ pops let r1, r2;