Sha256: 13c2218c5e1169aa26a0d29a66d37d28fdd053f5700a198547892a32dbe60b73
Contents?: true
Size: 560 Bytes
Versions: 10
Compression:
Stored size: 560 Bytes
Contents
<script setup lang="ts"> import ApplicationLogo from '@/Components/ApplicationLogo.vue' import { Link } from '@inertiajs/vue3' </script> <template> <div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900"> <div> <Link href="/"> <ApplicationLogo class="w-20 h-20 fill-current text-red-500" /> </Link> </div> <div class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg"> <slot /> </div> </div> </template>
Version data entries
10 entries across 10 versions & 1 rubygems