diff options
| author | realtradam <[email protected]> | 2024-06-19 19:41:29 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-06-19 19:41:29 -0400 |
| commit | fc6c10718a633f0439b3aac045d4537c58bc7c6e (patch) | |
| tree | fa6b3a234650a1852e0d1a80e8b5c1b7c00123ac /src/components/Apps.tsx | |
| parent | d477cb8af05a6b8acdb8afa1811777a68e742211 (diff) | |
| download | malcz.com-fc6c10718a633f0439b3aac045d4537c58bc7c6e.tar.gz malcz.com-fc6c10718a633f0439b3aac045d4537c58bc7c6e.zip | |
add small changes
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> + </> + ); +} |
