blob: e4dea262d2ad3d6b1eae4f55de918c57d5bd118a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>
</>
);
}
|