You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
30 lines
831 B
30 lines
831 B
<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-textColor-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-textColor-900"> |
|
You're logged in! |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</AuthenticatedLayout> |
|
</template>
|
|
|