diff --git a/app/search/page.tsx b/app/search/page.tsx index bc0f2a3..acf9d79 100644 --- a/app/search/page.tsx +++ b/app/search/page.tsx @@ -39,6 +39,9 @@ interface UnifiedResult { price?: { currency: string; initial: number; final: number } | null platforms?: { windows: boolean; mac: boolean; linux: boolean } | null controllerSupport?: string | null + isRawPerformer?: boolean + bestFps?: number | null + latestVersion?: string | null } function SearchContent() { @@ -86,8 +89,8 @@ function SearchContent() { function handleClick(result: UnifiedResult) { const path = result.appId - ? `/game/${result.appId}` - : `/game/${result.id}` + ? `/game/${result.appId}?sync=1` + : `/game/${result.id}?sync=1` router.push(path) } @@ -244,9 +247,16 @@ function SearchResultCard({ {/* Row 1: Title + metascore/price row */}
{result.developer}
@@ -422,11 +432,19 @@ function SearchResultCard({
color={result.platformSupport ? protonColor(result.platformSupport.protonStatus) : undefined}
/>
- {/* Avg FPS */}
-