Sha256: 005f56eee1d7f687c4f675a51a1f3b2287af98ab1218a1ec58d4147ee720b752

Contents?: true

Size: 630 Bytes

Versions: 5

Compression:

Stored size: 630 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-gray-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

5 entries across 5 versions & 1 rubygems

Version Path
kaze-0.5.0 stubs/inertia-vue-ts/app/javascript/Layouts/GuestLayout.vue
kaze-0.4.0 stubs/inertia-vue-ts/app/javascript/Layouts/GuestLayout.vue
kaze-0.3.0 stubs/inertia-vue-ts/app/javascript/Layouts/GuestLayout.vue
kaze-0.2.0 stubs/inertia-vue-ts/app/javascript/Layouts/GuestLayout.vue
kaze-0.1.0 stubs/inertia-vue-ts/app/javascript/Layouts/GuestLayout.vue