Improve main page

This commit is contained in:
2024-07-02 00:40:43 +02:00
parent e277bc64fe
commit dffd6b6bba
7 changed files with 88 additions and 50 deletions

View File

@@ -0,0 +1,18 @@
<template>
<ClientOnly>
<div
v-if="width > 1024"
class="text-[12px] italic flex items-center gap-1"
>
<UIcon
class="transform -rotate-12"
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>