Moved to Vue

This commit is contained in:
2026-04-02 22:01:38 +10:00
parent 4adba94109
commit 0b14b40fd6
68 changed files with 4853 additions and 306 deletions
+30
View File
@@ -0,0 +1,30 @@
<script setup>
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue';
import { Head } from '@inertiajs/vue3';
</script>
<template>
<Head title="Dashboard" />
<AuthenticatedLayout>
<template #header>
<h2
class="text-xl font-semibold leading-tight text-gray-800"
>
Dashboard
</h2>
</template>
<div class="py-12">
<div class="mx-auto max-w-7xl sm:px-6 lg:px-8">
<div
class="overflow-hidden bg-white shadow-sm sm:rounded-lg"
>
<div class="p-6 text-gray-900">
You're logged in!
</div>
</div>
</div>
</div>
</AuthenticatedLayout>
</template>