💄 Better products
This commit is contained in:
@ -37,6 +37,10 @@ definePageMeta({
|
||||
alias: ["/auth/mfa"],
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: t('signInTitle'),
|
||||
})
|
||||
|
||||
const route = useRoute()
|
||||
|
||||
const loading = ref(false)
|
||||
|
@ -102,6 +102,10 @@ const error = ref<string | null>(null)
|
||||
const { t } = useI18n()
|
||||
const config = useRuntimeConfig()
|
||||
|
||||
useHead({
|
||||
title: t('signUpTitle'),
|
||||
})
|
||||
|
||||
const route = useRoute()
|
||||
const router = useRouter()
|
||||
|
||||
|
@ -43,6 +43,17 @@
|
||||
<content-renderer-markdown :value="page" />
|
||||
</content-renderer>
|
||||
</article>
|
||||
|
||||
<div class="flex justify-start mt-5">
|
||||
<v-btn
|
||||
v-if="page?.url"
|
||||
variant="plain"
|
||||
prepend-icon="mdi-launch"
|
||||
:text="t('open')"
|
||||
:href="page?.url"
|
||||
target="_blank"
|
||||
/>
|
||||
</div>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
|
Reference in New Issue
Block a user