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.
22 lines
604 B
22 lines
604 B
<script setup> |
|
import ApplicationLogo from '@/Components/ApplicationLogo.vue'; |
|
import { Link } from '@inertiajs/vue3'; |
|
</script> |
|
|
|
<template> |
|
<div |
|
class="flex min-h-screen flex-col items-center bg-gray-100 pt-6 sm:justify-center sm:pt-0" |
|
> |
|
<div> |
|
<Link href="/"> |
|
<ApplicationLogo class="h-20 w-20 fill-current text-textColor-500" /> |
|
</Link> |
|
</div> |
|
|
|
<div |
|
class="mt-6 w-full overflow-hidden bg-white px-6 py-4 shadow-md sm:max-w-md sm:rounded-lg" |
|
> |
|
<slot /> |
|
</div> |
|
</div> |
|
</template>
|
|
|