changed app.blade.php

This commit is contained in:
2025-03-15 21:08:18 +01:00
parent 05f2ac7edb
commit efb3f34415
6 changed files with 54 additions and 5 deletions
@@ -0,0 +1,7 @@
<section>
<div class="container mx-auto">
<p class="text-center text-sm text-gray-500 dark:text-gray-400"></p>
&copy; {{ 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>
+1 -2
View File
@@ -52,7 +52,6 @@
@stack('modals')
@livewireScripts
@fluxScripts
</body>
</html>
@@ -0,0 +1,3 @@
<div>
{{-- Knowing others is intelligence; knowing yourself is true wisdom. --}}
</div>