spb/countryatlas
Public
TypeScript 57%
Python 38.6%
JavaScript 3.6%
CSS 0.6%
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