info route change

This commit is contained in:
Sendou 2019-11-10 16:33:08 +02:00
parent f7d97774ac
commit 6df4a2f864
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ const Footer = () => {
<List.Item as="a" href="https://discord.gg/J6NqUvt">
<Icon name="discord" size="big" />
</List.Item>
<List.Item as={Link} to="/info">
<List.Item as={Link} to="/about">
<Icon name="info circle" size="big" />
</List.Item>
</List>

View File

@ -69,7 +69,7 @@ const Routes = () => {
<Route path="/u/:id">
<UserPage />
</Route>
<Route path="/info">
<Route path="/about">
<InfoPage />
</Route>
<Route path="/404" render={() => <NotFound />} />