Skip to content

Commit

Permalink
fix title template
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Oct 30, 2024
1 parent 753a8c2 commit c0c7b4d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/shelve/app/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const { title, link, description, ogImage } = useAppConfig()
useHead({
title: title,
titleTemplate: title,
link: link,
})
Expand Down
4 changes: 4 additions & 0 deletions apps/shelve/app/pages/docs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
definePageMeta({
colorMode: 'dark',
})
useHead({
title: 'Documentation'
})
</script>

<template>
Expand Down
5 changes: 5 additions & 0 deletions apps/shelve/app/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ definePageMeta({
colorMode: 'dark',
})
useHead({
title: 'Shelve',
titleTemplate: 'Shelve',
})
const copy = ref(false)
function useClipboard(text: string) {
Expand Down
4 changes: 4 additions & 0 deletions apps/shelve/app/pages/roadmap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ definePageMeta({
colorMode: 'dark',
})
useHead({
title: 'Roadmap'
})
const appConfig = useAppConfig()
const token = 'eyJ2aWV3IjoiYm9hcmQiLCJib2FyZFN0YXR1c2VzIjpbInRyaWFnZSIsImJhY2tsb2ciLCJ0b2RvIiwiaW5fcHJvZ3Jlc3MiLCJpbl9yZXZpZXciLCJkb25lIiwicmVsZWFzZWQiLCJjYW5jZWxsZWQiXSwiYm9hcmRMaW5rZWRQcnMiOnRydWUsImxpc3RHcm91cCI6InN0YXR1cyIsImxpc3RPcmRlciI6ImNyZWF0ZWRfYXQiLCJ0aW1lbGluZVpvb20iOiJtb250aCIsInRpbWVsaW5lT3JkZXIiOiJzdGF0ZSIsInRpbWVsaW5lRGlzcGxheSI6ImFsbF9taWxlc3RvbmVzIiwiZmlsdGVycyI6e30sIm93bmVyIjoiSHVnb1JDRCIsIm5hbWUiOiJzaGVsdmUifQ=='
Expand Down
1 change: 1 addition & 0 deletions apps/shelve/app/pages/vault.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script setup lang="ts">
useHead({
title: 'Vault by Shelve - Secure Secret Sharing Platform',
titleTemplate: 'Vault by Shelve - Secure Secret Sharing Platform',
})
useSeoMeta({
Expand Down

0 comments on commit c0c7b4d

Please sign in to comment.