Files
moonwell-web/resources/views/landing.blade.php
T
2026-04-26 16:09:08 +04:00

30 lines
1.1 KiB
PHP

<!doctype html>
<html lang="{{ 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('moonwell.realm.server_name') }} Лунный Колодец</title>
<meta name="description" content="{{ config('moonwell.realm.tagline') }}">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
@vite(['resources/js/moonwell/main.jsx'])
</head>
<body>
<div id="root"></div>
<script>
window.MOONWELL = @json($bootstrap);
</script>
@auth
<form id="moonwell-logout" method="POST" action="{{ route('logout') }}" style="display:none">
@csrf
</form>
@endauth
</body>
</html>