diff --git a/wwwroot/app.js b/wwwroot/app.js
index b0e0d58..910cf49 100644
--- a/wwwroot/app.js
+++ b/wwwroot/app.js
@@ -153,19 +153,50 @@ function renderVotes() {
}
function renderResults() {
- const list = $("results-list");
- list.innerHTML = "";
- state.results.forEach((r) => {
- const card = buildCard({
- id: r.id,
- name: r.name,
- genre: `${r.total} pts • ${r.count} votes • avg ${r.average.toFixed(1)}`,
- description: r.description || (r.author ? `By ${r.author}` : ""),
- screenshotUrl: r.screenshotUrl,
- youtubeUrl: r.youtubeUrl,
- author: r.author
- }, { showAuthor: true });
- list.appendChild(card);
+ const container = $("results-list");
+ container.innerHTML = "";
+ const table = document.createElement("table");
+ table.className = "results-table";
+ table.innerHTML = `
+
+
+
+
+ Rank
+ Game
+ Author
+ Votes
+ Avg
+ Total
+ Links
+