mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 18:59:59 +01:00
36 lines
992 B
Vue
36 lines
992 B
Vue
<template>
|
|
<div class="flex items-center gap-2 mt-4">
|
|
<div class="flex items-center">
|
|
<UTooltip text="It's me 👋">
|
|
<div class="flex items-center w-12 h-12">
|
|
<NuxtImg
|
|
alt="Arthur Danjou picture"
|
|
class="w-full h-full hover:rotate-[360deg] duration-500 transform-gpu"
|
|
src="/favicon.png"
|
|
/>
|
|
</div>
|
|
</UTooltip>
|
|
</div>
|
|
<p class="not-prose">
|
|
{{ t('quote') }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { t } = useI18n({
|
|
useScope: 'local'
|
|
})
|
|
</script>
|
|
|
|
<i18n lang="json">
|
|
{
|
|
"en": {
|
|
"quote": "Hello everyone! Thanks for visiting my portfolio. Please leave whatever you like to say, such as suggestions, appreciations, questions or anything!"
|
|
},
|
|
"fr": {
|
|
"quote": "Bonjour tout le monde ! Merci de visiter mon portfolio. N'hésitez pas à laisser ce que vous avez à dire, comme des suggestions, des appréciations, des questions ou autre chose !"
|
|
}
|
|
}
|
|
</i18n>
|