fix: Add logo icon to knowledge-base header

- Add application-logo component to header
- Wrap logo and title in link to home page
This commit is contained in:
2025-11-29 12:08:05 +09:00
parent 5b4f1b4970
commit d47c3a456f

View File

@@ -33,10 +33,13 @@
<header class="bg-white border-b border-gray-200 sticky top-0 z-10">
<div class="max-w-full mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<h1 class="text-xl font-semibold text-gray-900">
{{ config('app.name', 'Knowledge Base') }}
</h1>
<div class="flex items-center space-x-3">
<a href="/" class="flex items-center space-x-3">
<x-application-logo class="block h-8 w-auto fill-current text-gray-800" />
<h1 class="text-xl font-semibold text-gray-900">
{{ config('app.name', 'Knowledge Base') }}
</h1>
</a>
</div>
<div class="flex items-center space-x-4">