Minor changes

This commit is contained in:
2021-10-27 13:45:54 -03:00
parent 57d55fb0fe
commit 605ad41198
2 changed files with 8 additions and 8 deletions

View File

@@ -33,6 +33,13 @@ function App() {
</Route> */} </Route> */}
<Route path="/credits-page">
<Credits />
<Footer />
</Route>
<Route path="/my-account"> <Route path="/my-account">
<AccountInfo /> <AccountInfo />
@@ -66,13 +73,6 @@ function App() {
</Route> </Route>
<Route path="/credits-page">
<Credits />
<Footer />
</Route>
<Route path="/"> <Route path="/">
<Game /> <Game />

View File

@@ -6,7 +6,7 @@ const Footer = (props) => {
{/* <p> {/* <p>
Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>. Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>.
</p> */} </p> */}
<a href="/credits">Credits</a> <a href="/credits-page">Credits</a>
</footer> </footer>
) )
} }