mirror of
https://github.com/axeloz/filesharing.git
synced 2025-05-06 10:03:55 +02:00
28 lines
713 B
PHP
28 lines
713 B
PHP
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
@hasSection('page_title')
|
|
@yield('page_title') -
|
|
@endif
|
|
{{ config('app.name') }}
|
|
</title>
|
|
<meta name="theme-color" content="#319197">
|
|
@vite('resources/css/app.css')
|
|
@stack('styles')
|
|
@vite('resources/js/app.js')
|
|
|
|
</head>
|
|
|
|
<body class="font-display text-[13px] selection:bg-purple-100 outline-none select-none">
|
|
|
|
<div class="md:fixed md:min-w-xl md:max-w-3xl md:left-[50%] md:top-[50%] md:translate-x-[-50%] md:translate-y-[-50%] md:w-2/3">
|
|
<div class="relative bg-white md:border border-primary md:rounded-lg md:overflow-hidden">
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
|
|
@stack('scripts')
|
|
|
|
</body>
|
|
</html>
|