summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/src/pages
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-28 15:37:18 -0400
committerrealtradam <[email protected]>2024-06-28 15:37:18 -0400
commitd45295ba1ccb9ceb4165cf0b81f60b135a147938 (patch)
tree5b87cdc478b214db54781b9375cec1ed9b331c75 /react-frontend/src/pages
parent2cb4da3b12c896b588716c50991a06c9bbb2cdeb (diff)
downloadgameHolster-d45295ba1ccb9ceb4165cf0b81f60b135a147938.tar.gz
gameHolster-d45295ba1ccb9ceb4165cf0b81f60b135a147938.zip
add sidebar
Diffstat (limited to 'react-frontend/src/pages')
-rw-r--r--react-frontend/src/pages/Home.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/react-frontend/src/pages/Home.tsx b/react-frontend/src/pages/Home.tsx
index 1fe2c83..2f15dd3 100644
--- a/react-frontend/src/pages/Home.tsx
+++ b/react-frontend/src/pages/Home.tsx
@@ -1,10 +1,10 @@
-import { Button } from 'rsuite';
export default function Home() {
return(
<>
- <h1>Welcome to Game Holster</h1>
- <Button>Its an rsuite button</Button>
+ <div className="flex justify-center p-4">
+ <h1 className="font-title text-6xl">Welcome to Game Holster</h1>
+ </div>
</>
);
}