mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-01-14 11:54:03 +01:00
18 lines
713 B
Vue
18 lines
713 B
Vue
<template>
|
|
<section>
|
|
<div class="prose dark:prose-invert mb-4">
|
|
<i18n-t keypath="tool.location" tag="p">
|
|
<template #location>
|
|
<strong>Paris, France 🇫🇷</strong>
|
|
</template>
|
|
</i18n-t>
|
|
</div>
|
|
<div class="m-1 md:max-w-2/3 shadow-sm rounded-xl border border-gray-200 dark:border-gray-700 overflow-hidden relative z-10">
|
|
<NuxtImg class="rounded-xl" src="/location.png" />
|
|
<div class="size-12 rounded-full border-2 border-sky-500 absolute z-50 top-2/5 -translate-y-1/2 left-1/5 -translate-x-1/2 animate-bounce">
|
|
<NuxtImg src="/arthur-pro.webp" class="rounded-full" alt="Location of Arthur" />
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|