29 lines
No EOL
993 B
PHP
29 lines
No EOL
993 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ config('app.name', 'Dish Planner') }}</title>
|
|
|
|
<!-- Scripts -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
</head>
|
|
<body class="font-sans antialiased bg-gray-600 text-gray-100">
|
|
<div class="min-h-screen flex flex-col items-center justify-center">
|
|
<div class="lg:w-1/3 lg:mx-auto w-full px-4" style="margin-top: 15vh;">
|
|
<div class="text-center mb-8">
|
|
<h1 class="text-2xl font-syncopate text-primary">DISH PLANNER</h1>
|
|
</div>
|
|
|
|
<div class="border-2 border-secondary rounded-lg px-5 pt-5 pb-3 lg:pt-10 lg:pb-7 bg-gray-600">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@livewireScripts
|
|
</body>
|
|
</html> |