Add documentation links to the page
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Manuel Thalmann 2022-12-23 21:15:51 +01:00
parent 0e25c96cd1
commit d66de37eca
2 changed files with 16 additions and 1 deletions

View file

@ -95,7 +95,18 @@ export function App()
`It's player "${Constants.PLAYER_NAMES[game.currentPlayer]}"s turn`
],
[MenuBar, { game }],
[Ad]
[Ad],
[
"div",
{ className: "links" },
[
"a",
{
href: "./docs/Documentation"
},
"Documentation"
]
]
];
}

View file

@ -93,3 +93,7 @@ div {
.ad {
margin-top: 3rem;
}
.links {
text-align: center;
}