Sink-UrlShortener/components/home/Twitter.vue
ccbikai b2e859107d chore: Update Twitter handle to reflect new username
Update Twitter URL across multiple files to point to the new username, ensuring consistency and accuracy in social media links.
2024-07-28 13:39:32 +08:00

22 lines
513 B
Vue

<script setup>
import { XIcon } from 'vue3-simple-icons'
import { ArrowRight } from 'lucide-vue-next'
</script>
<template>
<a
href="https://x.com/0xKaiBi"
target="_blank"
title="X(Twitter)"
class="inline-flex items-center px-3 py-1 mx-auto my-4 space-x-1 text-sm font-medium rounded-lg bg-muted"
>
<XIcon class="w-4 h-4" />
<Separator
orientation="vertical"
class="h-4"
/>
<span>Follow me on X(Twitter)</span>
<ArrowRight class="w-4 h-4" />
</a>
</template>