diff --git a/src/pages/TopFlix.tsx b/src/pages/TopFlix.tsx index 38117ac1..5878feb9 100644 --- a/src/pages/TopFlix.tsx +++ b/src/pages/TopFlix.tsx @@ -1,5 +1,6 @@ import classNames from "classnames"; import { ReactNode, useEffect, useState } from "react"; +import { Link } from "react-router-dom"; // Import Link from react-router-dom import { getMediaPoster } from "@/backend/metadata/tmdb"; import { ThiccContainer } from "@/components/layout/ThinContainer"; @@ -33,7 +34,14 @@ function ConfigValue(props: { name: string; children?: ReactNode }) { return ( <>
-

{props.name}

+

+ + {props.name} + +

{props.children}

@@ -129,7 +137,7 @@ export function TopFlix() { return ( {`${item.providerId} - Provided: ${successText}, Views: ${item.count}`} - {item.title} + {/*{item.title}*/} ); })} @@ -142,7 +150,7 @@ export function TopFlix() { Previous page
- Page {currentPage} of{" "} + {currentPage} /{" "} {Math.ceil(recentPlayedItems.length / itemsPerPage)}