installed breeze

This commit is contained in:
2024-06-22 02:11:12 +01:00
parent 7fa8e28e1c
commit 50fc714895
65 changed files with 7268 additions and 439 deletions

View File

@@ -0,0 +1,20 @@
<script setup>
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">
<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 shadow-md overflow-hidden sm:rounded-lg"
>
<slot />
</div>
</div>
</template>