Styles fixes

This commit is contained in:
2021-10-26 14:09:41 -03:00
parent 06be624918
commit a4d1e512b2
6 changed files with 67 additions and 7 deletions

View File

@@ -27,21 +27,23 @@ function App() {
<>
<Switch>
<Route path='/pokemon'>
{/* <Route path='/pokemon'>
<PokemonScripts />
</Route>
</Route> */}
<Route path="/my-account">
<AccountInfo />
<Footer />
</Route>
<Route path="/password-recovery">
<PasswordRecovery />
<Footer />
</Route>
@@ -60,22 +62,24 @@ function App() {
<Route path='/identify'>
<AdminIdentify />
<Footer />
</Route>
<Route path="/credits">
<Credits />
<Footer />
</Route>
<Route path="/">
<Game />
<Footer />
</Route>
</Switch>
<Footer />
</>
</Router>
);