mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 03:51:10 -05:00
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
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', 'ThrillWiki') }}</title>
|
|
|
|
<!-- Scripts -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
|
|
<!-- Styles -->
|
|
@livewireStyles
|
|
</head>
|
|
<body class="font-sans antialiased bg-gray-100">
|
|
<div class="min-h-screen">
|
|
<nav class="bg-white border-b border-gray-100">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex justify-between h-16">
|
|
<div class="flex">
|
|
<div class="flex-shrink-0 flex items-center">
|
|
<a href="{{ route('home') }}" class="text-2xl font-bold text-gray-800">
|
|
ThrillWiki
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex items-center">
|
|
@livewire('auth-menu-component')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Page Content -->
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
</div>
|
|
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|