PHP Classes

File: resources/js/Layouts/GuestLayout.vue

Recommend this page to a friend!
  Classes of Celso   DB Sync   resources/js/Layouts/GuestLayout.vue   Download  
File: resources/js/Layouts/GuestLayout.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: DB Sync
Synchronize databases between environments
Author: By
Last change:
Date: 3 months ago
Size: 607 bytes
 

 

Contents

Class file image Download
<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 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> <script setup> import ApplicationLogo from '@/Components/ApplicationLogo.vue'; import { Link } from '@inertiajs/vue3'; </script>