This commit is contained in:
2026-03-06 17:06:40 +07:00
commit 1d7781ab4d
24 changed files with 1961 additions and 0 deletions

15
src/data/apps.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { AppItem, Locale } from '../types/app'
import appsJson from './apps.json'
export const apps: AppItem[] = appsJson as AppItem[]
export const categoryLabel: Record<string, Record<Locale, string>> = {
all: {
'zh-CN': '全部',
'en-US': 'All',
},
tools: {
'zh-CN': '工具',
'en-US': 'Tools',
},
}