Changed marker builder

They're in the DOM now, so much easier to manage
This commit is contained in:
Alexis
2025-03-23 21:19:13 +01:00
parent 78c1991f6a
commit 3460689d3d
3 changed files with 32 additions and 50 deletions

View File

@@ -1,4 +1,4 @@
export const availableLangs = ['en', 'fr'] as const;
export const availableLangs = ['fr', 'en'] as const;
export type Language = typeof availableLangs[number];
export type LanguageDict = Record<Language, any>;