diff options
Diffstat (limited to 'src/components/Apps.tsx')
| -rw-r--r-- | src/components/Apps.tsx | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/components/Apps.tsx b/src/components/Apps.tsx new file mode 100644 index 0000000..e4dea26 --- /dev/null +++ b/src/components/Apps.tsx @@ -0,0 +1,30 @@ +import { useState, useEffect } from "react"; +//import { Link } from "react-router-dom"; +//import GameCard from "./GameCard"; +//import Button from "./Button"; +//import { GameType } from "../types"; + + +export default function Apps () { + //const [games, setGames] = useState<GameType[]>([]); + + + return( + <> + <div> + <div className="flex flex-col gap-16 max-w-6xl shrink"> + <div className="title font-bold text-6xl font-title">Apps</div> + <div className="jumbotron jumbotron-fluid bg-transparent"> + <div className="container secondary-color"> + </div> + </div> + <div className="prose prose-invert-off"> + <h1>Game Holster</h1> + <p>This is a work in progress thingie</p> + <p>talk about your app here</p> + </div> + </div> + </div> + </> + ); +} |
