feat(website): add next-intl i18n and dark mode support

This commit is contained in:
justsisyphus
2026-01-24 05:20:20 +09:00
parent b7d3417d2e
commit f28c8a45dd
19 changed files with 392 additions and 57 deletions
+6
View File
@@ -0,0 +1,6 @@
import { defineRouting } from 'next-intl/routing';
export const routing = defineRouting({
locales: ['en', 'ko', 'zh', 'ja'],
defaultLocale: 'en'
});