fix: 🚑 incorrect routing, class fixes, update readme

This commit is contained in:
raymonable
2026-02-15 12:20:19 -05:00
parent 8a78bb2c6f
commit ff1ed2d9ec
4 changed files with 6 additions and 5 deletions

View File

@@ -88,6 +88,7 @@
<Route path="/support" component={Communities} /> <Route path="/support" component={Communities} />
<Route path="/cards" component={LinkCard} /> <Route path="/cards" component={LinkCard} />
<Route path="/setup" component={SetupInstructions} /> <Route path="/setup" component={SetupInstructions} />
<Route path="/ranking" component={Ranking} />
<Route path="/ranking/:game" component={Ranking} /> <Route path="/ranking/:game" component={Ranking} />
<Route path="/u/:username" component={UserHome} /> <Route path="/u/:username" component={UserHome} />
<Route path="/u/:username/:game" component={UserHome} /> <Route path="/u/:username/:game" component={UserHome} />

View File

@@ -23,7 +23,7 @@
<ActionCard isSmall={true} color="201, 135, 174" icon="fluent:games-16-filled" href={`/u/${me.username}`}> <ActionCard isSmall={true} color="201, 135, 174" icon="fluent:games-16-filled" href={`/u/${me.username}`}>
<h3>{t('home.user-profile')}</h3> <h3>{t('home.user-profile')}</h3>
</ActionCard> </ActionCard>
<ActionCard isSmall={true} color="136, 99, 150" icon="fluent:text-bullet-list-square-16-filled" href={`/rankings`}> <ActionCard isSmall={true} color="136, 99, 150" icon="fluent:text-bullet-list-square-16-filled" href={`/ranking`}>
<h3>{t('home.rankings')}</h3> <h3>{t('home.rankings')}</h3>
</ActionCard> </ActionCard>
<ActionCard isSmall={true} color="133, 199, 201" icon="fluent:settings-16-filled" href={`/settings`}> <ActionCard isSmall={true} color="133, 199, 201" icon="fluent:settings-16-filled" href={`/settings`}>
@@ -44,7 +44,7 @@
</ActionCard> </ActionCard>
<ImportDataAction/> <ImportDataAction/>
<ActionCard icon="uil:link-alt" href="/setup"> <ActionCard icon="uil:link-alt" href="/setup">
<h3>{t('home.setup')}</h3> <h3>{t('home.setup')}</h3>
<span>{t('home.setup-description')}</span> <span>{t('home.setup-description')}</span>

View File

@@ -17,9 +17,9 @@
<Loading/> <Loading/>
{:then photos} {:then photos}
{#if photos.length === 0} {#if photos.length === 0}
<blockquote>{t('maiphoto.none')}</blockquote> <blockquote class="info">{t('maiphoto.none')}</blockquote>
{:else} {:else}
<blockquote>{t('maiphoto.url_warning')}</blockquote> <blockquote class="info">{t('maiphoto.url_warning')}</blockquote>
{/if} {/if}
<div class="pictures"> <div class="pictures">
{#each photos as photo} {#each photos as photo}

View File

@@ -54,7 +54,7 @@ Check out these docs for more information.
1. Ensure your game can boot to title screen. 1. Ensure your game can boot to title screen.
2. Go to [https://aquadx.net](https://aquadx.net) and sign up (or log in). 2. Go to [https://aquadx.net](https://aquadx.net) and sign up (or log in).
3. Access the Setup Connection page and follow the instructions provided. 3. Access the [Setup Connection page](https://aquadx.net/setup) and follow the instructions provided.
If you encounter any issue, please report via Discord, QQ, (both available on the website) or the GitHub issue tracker. If you encounter any issue, please report via Discord, QQ, (both available on the website) or the GitHub issue tracker.