aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Games/Games.tsx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--frontend/src/pages/Games/Games.tsx6
1 files changed, 4 insertions, 2 deletions
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";
3 3
4import GameEntry from "@components/GameEntry.tsx"; 4import GameEntry from "@components/GameEntry.tsx";
5import { Game } from "@customTypes/Game.ts"; 5import { Game } from "@customTypes/Game.ts";
6import BreadcrumbNav from "@components/BreadcrumbNav/BreadcrumbNav";
6 7
7interface GamesProps { 8interface GamesProps {
8 games: Game[]; 9 games: Game[];
@@ -10,11 +11,12 @@ interface GamesProps {
10 11
11const Games: React.FC<GamesProps> = ({ games }) => { 12const Games: React.FC<GamesProps> = ({ games }) => {
12 return ( 13 return (
13 <div className="py-12 px-12 w-full"> 14 <div>
14 <Helmet> 15 <Helmet>
15 <title>LPHUB | Games</title> 16 <title>LPHUB | Games</title>
16 </Helmet> 17 </Helmet>
17 <section> 18
19 <section className="px-12 pt-8 w-full">
18 <h1 className="text-3xl mb-8">Games</h1> 20 <h1 className="text-3xl mb-8">Games</h1>
19 <div className="flex flex-col w-full"> 21 <div className="flex flex-col w-full">
20 {games.map((game, index) => ( 22 {games.map((game, index) => (