Files
qumo-website/website/src/content/i18n.ts
2026-04-10 18:41:58 +02:00

10 lines
233 B
TypeScript

import enContent from './en.json';
import nlContent from './nl.json';
type Content = typeof enContent;
export function getContent(locale: string): Content {
if (locale === 'nl') return nlContent as Content;
return enContent;
}