v3: added localization, use global player for uploaded audio/video files

This commit is contained in:
khannurien
2026-04-03 15:29:33 +00:00
parent 378b3ffa46
commit 0ce80398a4
64 changed files with 4248 additions and 941 deletions

3
src/config/feedTabs.ts Normal file
View File

@@ -0,0 +1,3 @@
export const FEED_TABS = ["hot", "new", "journal", "followed"] as const;
export type FeedTab = (typeof FEED_TABS)[number];
export const VALID_TABS = new Set<string>(FEED_TABS);