Add favicon SVG with gradient background and letter "R"

This commit is contained in:
2025-12-30 21:04:47 +07:00
parent 29a25d6456
commit c91fab6122
21 changed files with 7510 additions and 70 deletions

View File

@@ -0,0 +1,23 @@
export interface AppVersion {
version: string
buildNumber: string
releaseDate: string
releaseNotes: {
'zh-CN': string[]
'en-US': string[]
}
downloads: {
ios: string
android: string
h5: string
}
}
export interface DownloadStats {
total: number
today: number
ios: number
android: number
}
export type Platform = 'ios' | 'android' | 'desktop' | 'unknown'