feat: 重构首页并添加国际化支持

- 完全重构首页布局,添加轮播图、公司介绍、产品中心等模块
- 新增多个关于页面路由结构
- 调整国际化配置,移除日语支持并更新翻译文本
- 优化导航菜单和页脚内容
This commit is contained in:
砂糖
2025-11-21 15:35:36 +08:00
parent 8b73b47d02
commit 7f5ae85d34
14 changed files with 490 additions and 158 deletions

View File

@@ -1,12 +1,11 @@
import { createNavigation } from 'next-intl/navigation';
import { defineRouting } from 'next-intl/routing';
export const LOCALES = ['en', 'zh', 'ja', 'vi']
export const LOCALES = ['en', 'zh', 'vi']
export const DEFAULT_LOCALE = 'zh'
export const LOCALE_NAMES: Record<string, string> = {
'en': "English",
'zh': "中文",
'ja': "日本語",
'vi': "Tiếng Việt",
};