2022-12-26 09:50:11 +01:00
|
|
|
<template>
|
2022-12-28 02:12:56 +01:00
|
|
|
<MainContent back-on-small-screen>
|
2022-12-26 09:50:11 +01:00
|
|
|
<template #title>
|
|
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
|
|
|
<span>{{ $t('settings.profile.label') }}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<SettingsNavItem
|
|
|
|
command
|
|
|
|
icon="i-ri:user-settings-line"
|
|
|
|
:text="$t('settings.profile.appearance.label')"
|
2022-12-29 21:01:31 +01:00
|
|
|
:description="$t('settings.profile.appearance.description')"
|
2022-12-26 09:50:11 +01:00
|
|
|
to="/settings/profile/appearance"
|
2022-12-29 21:01:31 +01:00
|
|
|
/>
|
2022-12-26 09:50:11 +01:00
|
|
|
<SettingsNavItem
|
|
|
|
command
|
|
|
|
icon="i-ri:hashtag"
|
|
|
|
:text="$t('settings.profile.featured_tags.label')"
|
2022-12-29 21:01:31 +01:00
|
|
|
:description="$t('settings.profile.featured_tags.description')"
|
2022-12-26 09:50:11 +01:00
|
|
|
to="/settings/profile/featured-tags"
|
2022-12-29 21:01:31 +01:00
|
|
|
/>
|
2022-12-26 09:50:11 +01:00
|
|
|
</MainContent>
|
|
|
|
</template>
|