[V1] Added Explore Feature + Frecency Based Reccomendations

This commit is contained in:
Youwes09
2026-02-22 20:21:58 -06:00
parent dc6db4dd98
commit 11247a69fe
11 changed files with 1130 additions and 155 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import { DEFAULT_KEYBINDS, type Keybinds } from "../lib/keybinds";
export type PageStyle = "single" | "double" | "longstrip";
export type FitMode = "width" | "height" | "screen" | "original";
export type LibraryFilter = "all" | "library" | "downloaded" | string; // string = folder id
export type NavPage = "library" | "sources" | "downloads" | "extensions" | "history" | "search";
export type NavPage = "library" | "sources" | "explore" | "downloads" | "extensions" | "history" | "search";
export type ReadingDirection = "ltr" | "rtl";
export type ChapterSortDir = "desc" | "asc";