Files
artchat/app/components/tool/Credits.vue
Arthur DANJOU f73276df8f refactor: remove Vercel references and update dependencies
- Removed Vercel from skills and theme descriptions.
- Updated theme description to only mention JetBrains Mono.
- Changed deployment references from Vercel to Cloudflare in multiple locales.
- Updated package dependencies:
  - @iconify-json/devicon from 1.2.44 to 1.2.45
  - @tailwindcss/typography from 0.5.18 to 0.5.19
  - vue from 3.5.21 to 3.5.22
  - @types/node from 24.5.2 to 24.6.0
  - vue-tsc from 3.0.8 to 3.1.0
2025-09-30 11:16:32 +02:00

56 lines
1.4 KiB
Vue

<script lang="ts" setup>
const { t } = useI18n()
const year = ref(useNow().value.getFullYear())
</script>
<template>
<section class="prose dark:prose-invert">
<i18n-t keypath="tool.credits.made">
<template #nuxt>
<UButton
label="Nuxt Stack (Core, UI, I18n, Content)"
trailing-icon="i-logos-nuxt-icon"
variant="link"
to="https://nuxt.com"
target="_blank"
class="px-0"
/>
</template>
<template #cloudflare>
<UButton
label="Cloudflare"
trailing-icon="i-logos-cloudflare-icon"
variant="link"
to="https://cloudflare.com"
target="_blank"
class="px-0"
/>
</template>
</i18n-t>
<p>{{ t('tool.credits.heart') }}</p>
<i18n-t keypath="tool.credits.chat" tag="p">
<template #chat>
<UTooltip
arrow
:content="{
position: 'bottom',
sideOffset: 0,
}"
:delay-duration="0"
:text="t('tool.credits.tooltip')"
>
<strong>ArtChat</strong>
</UTooltip>
</template>
</i18n-t>
<p>{{ t('tool.credits.thank') }}</p>
<p>{{ t('tool.credits.message') }}</p>
<i18n-t keypath="tool.credits.copyrights" tag="p">
<template #year>
{{ year }}
</template>
</i18n-t>
</section>
</template>