import en from "../translations/en.json"; import lv from "../translations/lv.json"; export const languages = { en: "EN", lv: "LV", } as const; export const defaultLang = "en"; export const showDefaultLang = true; export const ui = { en, lv, } as const; export type SupportedLang = keyof typeof ui;