From ddfe5015c9237fbe0fea44f8bcde31708eb3adac Mon Sep 17 00:00:00 2001 From: Wolfboy248 Date: Tue, 26 Aug 2025 08:20:51 +0200 Subject: Fixed some inconsistant styles and fixed category queryparam in maplist page --- frontend/src/pages/Games/Games.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'frontend/src/pages/Games/Games.tsx') diff --git a/frontend/src/pages/Games/Games.tsx b/frontend/src/pages/Games/Games.tsx index ea46733..2f084f3 100644 --- a/frontend/src/pages/Games/Games.tsx +++ b/frontend/src/pages/Games/Games.tsx @@ -3,6 +3,7 @@ import { Helmet } from "react-helmet"; import GameEntry from "@components/GameEntry.tsx"; import { Game } from "@customTypes/Game.ts"; +import BreadcrumbNav from "@components/BreadcrumbNav/BreadcrumbNav"; interface GamesProps { games: Game[]; @@ -10,11 +11,12 @@ interface GamesProps { const Games: React.FC = ({ games }) => { return ( -
+
LPHUB | Games -
+ +

Games

{games.map((game, index) => ( -- cgit v1.2.3