mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
66ee4afb95
* feat(welcome): add simple welcome page * feat(api): add 404 handling
15 lines
984 B
HTML
15 lines
984 B
HTML
<nav class="bg-gray-800 shadow-lg">
|
|
<div class="container mx-auto px-4 py-4">
|
|
<div class="flex items-center justify-between">
|
|
<div class="flex items-center">
|
|
<!-- Logo Image: Replace 'logo_url_here' with your actual logo URL -->
|
|
<a href="/" class="text-white text-xl font-bold"><img src="https://github.com/go-skynet/LocalAI/assets/2420543/0966aa2a-166e-4f99-a3e5-6c915fc997dd" alt="LocalAI Logo" class="h-10 mr-3 border-2 border-gray-300 shadow rounded"></a>
|
|
<a href="/" class="text-white text-xl font-bold">LocalAI</a>
|
|
</div>
|
|
<div>
|
|
<a href="/" class="text-gray-400 hover:text-white px-3 py-2 rounded"><i class="fas fa-home pr-2"></i>Home</a>
|
|
<a href="https://localai.io" class="text-gray-400 hover:text-white px-3 py-2 rounded" target="_blank" ><i class="fas fa-book-reader pr-2"></i> Documentation</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav> |