Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apps/web/app/error.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { useHead } from '#imports'
import { useHead, useWithBase } from '#imports'
import { useColor, useTypography } from '@vuejs-jp/composable'
import { conferenceTitle } from '~/utils/constants'
import { generalOg, twitterOg } from '~/utils/og.constants'
Expand All @@ -13,6 +13,7 @@ const props = defineProps<ErrorProps>()

const { fontWeight, fontSize } = useTypography()
const { color } = useColor()
const withBase = useWithBase()

useHead({
// eslint-disable-next-line no-unused-vars
Expand Down Expand Up @@ -49,7 +50,7 @@ useHead({
background-color="white"
color="vue-blue"
target=""
href="/"
:href="withBase('/')"
>
{{ $t('back_to_top') }}
</VFLinkButton>
Expand Down
5 changes: 3 additions & 2 deletions apps/web/app/pages/code-of-conduct.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { useHead } from '#imports'
import { useHead, useWithBase } from '#imports'
import { useColor, useTypography } from '@vuejs-jp/composable'
import { useLocaleCurrent } from '~/composables/useLocaleCurrent'
import { conferenceTitle, linkUrl, ogCoCDescription } from '~/utils/constants'
Expand Down Expand Up @@ -27,6 +27,7 @@ useHead({
const { path: localePath } = useLocaleCurrent()
const { fontWeight, fontSize } = useTypography()
const { color } = useColor()
const withBase = useWithBase()
</script>

<template>
Expand Down Expand Up @@ -58,7 +59,7 @@ const { color } = useColor()
background-color="white"
color="vue-blue"
target=""
:href="`${localePath}/`"
:href="withBase(`${localePath}/`)"
>
{{ $t('back_to_top') }}
</VFLinkButton>
Expand Down
5 changes: 3 additions & 2 deletions apps/web/app/pages/tokusho.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { useHead } from '#imports'
import { useHead, useWithBase } from '#imports'
import { useColor, useTypography } from '@vuejs-jp/composable'
import { useLocaleCurrent } from '~/composables/useLocaleCurrent'
import { conferenceTitle, linkUrl, ogTokushoDescription } from '~/utils/constants'
Expand Down Expand Up @@ -27,6 +27,7 @@ useHead({
const { path: localePath } = useLocaleCurrent()
const { fontWeight, fontSize } = useTypography()
const { color } = useColor()
const withBase = useWithBase()
</script>

<template>
Expand Down Expand Up @@ -58,7 +59,7 @@ const { color } = useColor()
background-color="white"
color="vue-blue"
target=""
:href="`${localePath}/`"
:href="withBase(`${localePath}/`)"
>
{{ $t('back_to_top') }}
</VFLinkButton>
Expand Down