mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-01-14 15:54:03 +01:00
47 lines
1.4 KiB
Vue
47 lines
1.4 KiB
Vue
<script lang="ts" setup>
|
|
const { t } = useI18n()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="mt-8 p-8 border bg-white/70 dark:bg-black/70 border-gray-200 dark:border-neutral-700 rounded-md">
|
|
<NuxtImg
|
|
src="/arthur pro.webp"
|
|
alt="Arthur Danjou"
|
|
class="w-24 h-24 rounded-full float-left mr-4 mb-4"
|
|
/>
|
|
<i18n-t
|
|
keypath="post.footer.thanks"
|
|
tag="p"
|
|
class="text-neutral-600 dark:text-neutral-400 text-justify"
|
|
>
|
|
<template #linkedin>
|
|
<PostLink
|
|
href="https://www.linkedin.com/in/arthurdanjou/"
|
|
icon="i-ph-linkedin-logo-duotone"
|
|
label="LinkedIn"
|
|
target="_blank"
|
|
class="inline-flex items-start gap-1 transform translate-y-1"
|
|
/>
|
|
</template>
|
|
<template #github>
|
|
<PostLink
|
|
href="https://github.com/arthurdanjou"
|
|
icon="i-ph-github-logo-duotone"
|
|
label="GitHub"
|
|
target="_blank"
|
|
class="inline-flex items-start gap-1 transform translate-y-1"
|
|
/>
|
|
</template>
|
|
<template #comment>
|
|
<strong class="text-neutral-800 dark:text-neutral-200">{{ t('post.footer.comment') }}</strong>
|
|
</template>
|
|
<template #name>
|
|
<strong class="text-neutral-800 dark:text-neutral-200">Arthur</strong>
|
|
</template>
|
|
<template #jump>
|
|
<br> <br>
|
|
</template>
|
|
</i18n-t>
|
|
</div>
|
|
</template>
|