Files
Hermes/resources/views/components/layouts/app.blade.php
T
2026-02-20 12:44:52 +00:00

15 lines
431 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.0">
<title>{{ $title ?? config('app.name') }}</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen text-[#dbdee1] bg-[#313338]">
{{ $slot }}
</body>
</html>