SPB Git forge

spb/countryatlas

Public
20commits 1branches 0releases
268.3 MBsize
maindefault branch
12 days agolast push
TypeScript 57% Python 38.6% JavaScript 3.6% CSS 0.6%
821 B · 16 lines typescript
Raw Blame History
1/** Preset comparisons for the /compare builder (slugs from the registry; membership as of 2026). */2export interface ComparePreset {3  id: string;4  /** i18n key suffix → `compare.preset.<id>` */5  slugs: string[];6}78export const COMPARE_GROUP_PRESETS: readonly ComparePreset[] = [9  { id: 'g7', slugs: ['canada', 'france', 'germany', 'italy', 'japan', 'united-kingdom', 'united-states'] },10  { id: 'nordics', slugs: ['denmark', 'finland', 'iceland', 'norway', 'sweden'] },11  { id: 'brics', slugs: ['brazil', 'russia', 'india', 'china', 'south-africa'] },12  { id: 'usmca', slugs: ['canada', 'mexico', 'united-states'] },13  { id: 'anglosphere', slugs: ['australia', 'canada', 'new-zealand', 'united-kingdom', 'united-states'] },14  { id: 'asian-tigers', slugs: ['hong-kong', 'singapore', 'south-korea', 'taiwan'] },15];16