Ready for production deployment with Dockerfile and i18n support

This commit is contained in:
2026-04-13 12:57:52 +03:00
parent 8346812507
commit b30376aa1d
32 changed files with 1078 additions and 117 deletions

View File

@@ -0,0 +1,6 @@
export const getDictionary = async (locale: 'en' | 'tr') => {
if (locale === 'en') {
return import('./en.json').then((module) => module.default);
}
return import('./tr.json').then((module) => module.default);
};