Files
justin 2f9e8921a2
All checks were successful
Build and Push Docker / build (push) Successful in 21s
test build container
2025-10-10 17:30:22 +02:00

13 lines
310 B
Vue

<script setup lang="ts">
import { Head } from '@inertiajs/vue3'
import { Link } from '@inertiajs/vue3'
</script>
<template>
<Head title="Homepage" />
<div>
Justin Leroy
<button class="plausible-event-name=Button+Click">Click me</button>
<Link href="/page">Page</Link>
</div>
</template>