mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-17 00:08:50 +01:00
19 lines
446 B
Vue
19 lines
446 B
Vue
<template>
|
|
<ClientOnly>
|
|
<div
|
|
v-if="width > 1024"
|
|
class="group text-[12px] italic flex items-center gap-1"
|
|
>
|
|
<UIcon
|
|
class="transform -rotate-12 duration-300 group-hover:animate-wave"
|
|
name="i-ph-hand-pointing-duotone"
|
|
/>
|
|
<p>Hover some of the bold text to find out more about me.</p>
|
|
</div>
|
|
</ClientOnly>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { width } = useWindowSize()
|
|
</script>
|