10 lines
234 B
Vue

<script setup>
import { Link } from '@inertiajs/vue3';
</script>
<template>
<Link :href="'/'" class="flex w-full justify-center items-center space-x-2">
<img src="/images/logo.png" class="h-20" />
</Link>
</template>