aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Games
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
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')
-rw-r--r--frontend/src/pages/Games/Games.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/src/pages/Games/Games.tsx b/frontend/src/pages/Games/Games.tsx
index e23b245..ea46733 100644
--- a/frontend/src/pages/Games/Games.tsx
+++ b/frontend/src/pages/Games/Games.tsx
@@ -10,12 +10,12 @@ interface GamesProps {
10 10
11const Games: React.FC<GamesProps> = ({ games }) => { 11const Games: React.FC<GamesProps> = ({ games }) => {
12 return ( 12 return (
13 <div className="ml-20 min-h-screen text-foreground font-[--font-barlow-semicondensed-regular] overflow-y-auto scrollbar-thin"> 13 <div className="py-12 px-12 w-full">
14 <Helmet> 14 <Helmet>
15 <title>LPHUB | Games</title> 15 <title>LPHUB | Games</title>
16 </Helmet> 16 </Helmet>
17 <section className="py-12 px-12 w-full"> 17 <section>
18 <h1 className="text-3xl font-bold mb-8">Games</h1> 18 <h1 className="text-3xl mb-8">Games</h1>
19 <div className="flex flex-col w-full"> 19 <div className="flex flex-col w-full">
20 {games.map((game, index) => ( 20 {games.map((game, index) => (
21 <GameEntry game={game} key={index} /> 21 <GameEntry game={game} key={index} />