-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: Wed 31 Jul 2024 10:25:37 CEST
- Loading branch information
Showing
3 changed files
with
33 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ import StringUtils from '../utils/StringUtils'; | |
import By from '../components/By'; | ||
import getAllGames from '../allGames'; | ||
import Logo from '../components/Logo'; | ||
import DevMessage from '../components/DevMessage/DevMessage'; | ||
import DevMessage from '../components/DevMessage'; | ||
|
||
export default function HomeView() { | ||
const navigate = useNavigate(); | ||
|
@@ -30,22 +30,32 @@ export default function HomeView() { | |
}}> | ||
Expandable Table | ||
</button> | ||
<button className="btn selected wide">Fix size Table</button> | ||
{/* <button className="btn selected wide">Fix size Table</button> */} | ||
</div> | ||
<h2>Games</h2> | ||
<div className="ver"> | ||
{games.map((game) => ( | ||
<LinkGameButton key={game} game={game} /> | ||
))} | ||
</div> | ||
<p> | ||
<i>Missing a game? </i> | ||
</p> | ||
<p> | ||
<b> | ||
<a href="mailto:[email protected]?subject=BoardScoreHub%20Game%20Request&body=Please%20add%20the%20game%20%22GameName%22%20to%20BoardScoreHub."> | ||
Contact me | ||
</a> | ||
</b> | ||
</p> | ||
<h2>External</h2> | ||
<div className="ver"> | ||
<LinkGameButton game="Cascadia$x$https://cascoria.philipp-bonin.com/#/" /> | ||
</div> | ||
<h2>Custom</h2> | ||
<b> | ||
<div className="msg"> | ||
<i>Coming soon...</i> | ||
</b> | ||
</div> | ||
{/* <button | ||
className="btn selected wide" | ||
onClick={() => { | ||
|