Changed colors.index to Livewire
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<section>
|
||||
<div class="container mx-auto text-center py-8 text-zinc-500">
|
||||
<p>Copyright 2025 {{ config('app.name') }}</p>
|
||||
</div>
|
||||
</section>
|
||||
@@ -1,5 +1,7 @@
|
||||
<div class="py-6 px-4 sm:px-6 lg:px-8">
|
||||
<div class="bg-zinc-700 w-full border-b border-accent">
|
||||
<div class="container mx-auto py-6 px-4 sm:px-6 lg:px-8">
|
||||
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
||||
{{ $slot }}
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -4,9 +4,28 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>{{ $title ?? 'Page Title' }}</title>
|
||||
<!-- Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.bunny.net">
|
||||
<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') ?? config('app.name') }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<body class="font-sans antialiased bg-zinc-800">
|
||||
<x-navbar />
|
||||
|
||||
{{ $slot }}
|
||||
|
||||
<x-footer />
|
||||
|
||||
@livewireScripts
|
||||
@fluxScripts
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user