aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Games.tsx
diff options
context:
space:
mode:
authorWolfboy248 <georgejvindkarlsen@gmail.com>2025-08-19 13:23:56 +0200
committerWolfboy248 <georgejvindkarlsen@gmail.com>2025-08-19 13:23:56 +0200
commit97be0afd140c7c9e1fd03ba5ab4e486d90907129 (patch)
treeab9dcf8ebab077b5fc7ab149c6ce8c13c21caaab /frontend/src/pages/Games.tsx
parentorganised pages, started work on theme (diff)
downloadlphub-97be0afd140c7c9e1fd03ba5ab4e486d90907129.tar.gz
lphub-97be0afd140c7c9e1fd03ba5ab4e486d90907129.tar.bz2
lphub-97be0afd140c7c9e1fd03ba5ab4e486d90907129.zip
organised pages, started work on theme
Diffstat (limited to 'frontend/src/pages/Games.tsx')
-rw-r--r--frontend/src/pages/Games.tsx29
1 files changed, 0 insertions, 29 deletions
diff --git a/frontend/src/pages/Games.tsx b/frontend/src/pages/Games.tsx
deleted file mode 100644
index 8587635..0000000
--- a/frontend/src/pages/Games.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
1import React from "react";
2import { Helmet } from "react-helmet";
3
4import GameEntry from "@components/GameEntry";
5import { Game } from "@customTypes/Game";
6
7interface GamesProps {
8 games: Game[];
9}
10
11const Games: React.FC<GamesProps> = ({ games }) => {
12 return (
13 <div className="ml-20 min-h-screen text-foreground font-[--font-barlow-semicondensed-regular] overflow-y-auto scrollbar-thin">
14 <Helmet>
15 <title>LPHUB | Games</title>
16 </Helmet>
17 <section className="py-12 px-12 w-full">
18 <h1 className="text-3xl font-bold mb-8">Games</h1>
19 <div className="flex flex-col w-full">
20 {games.map((game, index) => (
21 <GameEntry game={game} key={index} />
22 ))}
23 </div>
24 </section>
25 </div>
26 );
27};
28
29export default Games;