mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-23 06:15:13 +02:00
feat: update user navigation and add logo component for improved branding
This commit is contained in:
10
web/src/lib/components/logo-side-by-side.svelte
Normal file
10
web/src/lib/components/logo-side-by-side.svelte
Normal file
@@ -0,0 +1,10 @@
|
||||
<script lang="ts">
|
||||
import logo from '$lib/images/logo.svg';
|
||||
|
||||
let props = $props();
|
||||
</script>
|
||||
|
||||
<div {...props} class="flex items-center">
|
||||
<img alt="Logo" class="h-12 w-12 mr-2" src={logo}/>
|
||||
<span class="text-3xl font-bold">Media Manager</span>
|
||||
</div>
|
||||
Reference in New Issue
Block a user