40 lines
974 B
PHP
40 lines
974 B
PHP
<!doctype html>
|
|
<html lang="en" class="h-full bg-gray-100">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>AuditionAdmin</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
<body class="h-full">
|
|
|
|
<!--
|
|
This example requires updating your template:
|
|
|
|
```
|
|
<html class="h-full bg-gray-100">
|
|
<body class="h-full">
|
|
```
|
|
-->
|
|
<div class="min-h-full">
|
|
<x-layout.navbar />
|
|
|
|
<header class="bg-white shadow-sm">
|
|
<div class="mx-auto max-w-7xl px-4 py-4 sm:px-6 lg:px-8">
|
|
<h1 class="text-lg font-semibold leading-6 text-gray-900">{{ $page_title }}</h1>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<div class="mx-auto max-w-7xl py-6 sm:px-6 lg:px-8">
|
|
{{ $slot }}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|