changed app.blade.php
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<section>
|
||||
<div class="container mx-auto">
|
||||
<p class="text-center text-sm text-gray-500 dark:text-gray-400"></p>
|
||||
© {{ now()->year }} {{ config('app.name') }}. All rights reserved.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
@@ -3,10 +3,33 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- CSRF Token -->
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<title>{{ $title ?? 'Page Title' }}</title>
|
||||
<link rel="shortcut icon" href="{{ asset('favicon.png') }}" type="image/x-icon">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.bunny.net">
|
||||
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
||||
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
|
||||
|
||||
<!-- Scripts -->
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
|
||||
<!-- Styles -->
|
||||
@livewireStyles
|
||||
@fluxAppearance
|
||||
|
||||
<title>{{ $title . ' | ' . config('app.name', 'Laravel') ?? config('app.name', 'Laravel') }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<body class="font-sans antialiased">
|
||||
{{ $slot }}
|
||||
|
||||
<x-footer/>
|
||||
|
||||
@stack('modals')
|
||||
|
||||
@livewireScripts
|
||||
@fluxScripts
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user