Sha256: fcc698e0a237fa0d5457b168248e25ebfcd475a105b6d7045511df988d91475c

Contents?: true

Size: 578 Bytes

Versions: 1

Compression:

Stored size: 578 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

1 entries across 1 versions & 1 rubygems

Version Path
kaze-0.8.0 stubs/inertia-vue-ts/app/javascript/Layouts/GuestLayout.vue