Primer commit
This commit is contained in:
20
resources/js/Layouts/GuestLayout.vue
Normal file
20
resources/js/Layouts/GuestLayout.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<script setup>
|
||||
import ApplicationLogo from '@/Components/ApplicationLogo.vue';
|
||||
import { Link } from '@inertiajs/vue3';
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="min-vh-100 bg-light d-flex flex-column align-items-center justify-content-center py-4">
|
||||
<div class="mb-4">
|
||||
<Link href="/">
|
||||
<ApplicationLogo class="d-block" style="height: 80px; width: 80px;" />
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
<div class="card shadow-sm w-100" style="max-width: 28rem;">
|
||||
<div class="card-body p-4 p-sm-5">
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user