Skip to content

Commit

Permalink
fix: adjust meta info to crab (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
maybeanerd authored Mar 7, 2024
1 parent 5bdf591 commit 14edf24
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 21 deletions.
8 changes: 2 additions & 6 deletions components/nav/NavFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,11 @@ function toggleDark() {
</NuxtLink>
</template>
&middot;
<NuxtLink href="/m.webtoo.ls/@elk" target="_blank">
<NuxtLink href="/@maybeanerd" target="_blank">
Mastodon
</NuxtLink>
&middot;
<NuxtLink href="https://chat.elk.zone" target="_blank" external>
Discord
</NuxtLink>
&middot;
<NuxtLink href="https://github.com/elk-zone/elk" target="_blank" external>
<NuxtLink href="https://github.com/maybeanerd/crab" target="_blank" external>
GitHub
</NuxtLink>
</div>
Expand Down
11 changes: 5 additions & 6 deletions docs/app.config.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
export default defineAppConfig({
docus: {
title: 'Elk',
title: 'crab',
description: 'A nimble Mastodon web client.',
image: 'https://docs.elk.zone/elk-screenshot.png',
image: 'https://github.com/maybeanerd/crab/blob/main/public/crab-original.png?raw=true',
socials: {
twitter: 'elk_zone',
github: 'elk-zone/elk',
github: 'maybeanerd/crab',
mastodon: {
label: 'Mastodon',
icon: 'IconMastodon',
href: 'https://elk.zone/@[email protected]',
href: 'https://crab.bumscode.com/@maybeanerd',
},
},
aside: {
Expand All @@ -28,7 +27,7 @@ export default defineAppConfig({
icon: 'IconNuxtLabs',
},
{
href: 'https://m.webtoo.ls/@elk',
href: 'https://crab.bumscode.com/@maybeanerd',
icon: 'IconMastodon',
},
],
Expand Down
12 changes: 3 additions & 9 deletions pages/settings/about/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function handleShowCommit() {
<template v-if="isHydrated">
<SettingsItem
:text="$t('settings.about.version')"
:to="showCommit ? `https://github.com/elk-zone/elk/commit/${buildInfo.commit}` : undefined"
:to="showCommit ? `https://github.com/maybeanerd/crab/commit/${buildInfo.commit}` : undefined"
external target="_blank"
@click="handleShowCommit"
>
Expand All @@ -61,19 +61,13 @@ function handleShowCommit() {
<SettingsItem
text="Mastodon"
icon="i-ri:mastodon-line"
to="/m.webtoo.ls/@elk"
to="/@maybeanerd"
large target="_blank"
/>
<SettingsItem
text="Discord"
icon="i-ri:discord-fill"
to="https://chat.elk.zone"
external large target="_blank"
/>
<SettingsItem
text="GitHub"
icon="i-ri:github-fill"
to="https://github.com/elk-zone/elk"
to="https://github.com/maybeanerd/crab"
external large target="_blank"
/>

Expand Down

0 comments on commit 14edf24

Please sign in to comment.