step 002 complete

This commit is contained in:
2026-04-10 18:41:58 +02:00
parent e9aa6f452b
commit 089dbaa606
26 changed files with 2732 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
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;
}