diff --git a/src/App.tsx b/src/App.tsx
index e94951b..9724c3b 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -12,6 +12,7 @@ import Locations from "./pages/Locations";
import Profiles from "./pages/Profiles";
import Friends from "./pages/Friends";
import Games from "./pages/Games";
+import RandomPick from "./pages/RandomPick";
import ImportedGames from "./pages/ImportedGames";
import Auth from "./pages/Auth";
import Settings from "./pages/Settings";
@@ -44,6 +45,7 @@ function App() {
+ On joue à quoi ? +
++ Chacun vote, le sort tranche +
++ Combien de joueurs ? +
++ Chacun votera pour un jeu, puis le sort décidera. +
++ {votableGames.length} jeu{votableGames.length > 1 ? "x" : ""}{" "} + {eligible.length > 0 ? "compatible" : "disponible"} + {votableGames.length > 1 ? "s" : ""} +
++ Joueur {votes.length + 1}, à toi ! +
++ Choisis ton jeu · {votes.length}/{playerCount} vote + {votes.length > 1 ? "s" : ""} +
++ Tirage en cours… +
++ {spinningId ? gameById(spinningId)?.name : ""} +
+ > + ) : ( + <> ++ {winner.name} +
++ {byMajority + ? `${tallyEntries()[0]?.[1]} voix sur ${playerCount}` + : `Tirage parmi ${tallyEntries().length} jeux à égalité`} +
++ Votes +
+ {tallyEntries().map(([id, n]) => { + const g = gameById(id); + if (!g) return null; + return ( +