more i18n usage + logo
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
import FormLayout from "./FormLayout.svelte";
|
||||
import Tracks from "./Tracks.svelte";
|
||||
import BreadcrumbNav from "./BreadcrumbNav.svelte";
|
||||
import NotFound from "./NotFound.svelte";
|
||||
import NotFound from "./NotFound.svelte";
|
||||
//
|
||||
let isProfileActionsVisible = false;
|
||||
let mobile_menu_opened = false;
|
||||
@@ -20,9 +20,11 @@ import NotFound from "./NotFound.svelte";
|
||||
<div class="flex-shrink-0">
|
||||
<img
|
||||
class="h-8 w-8"
|
||||
src="https://tailwindui.com/img/logos/workflow-mark-indigo-500.svg"
|
||||
src="https://lauf-fuer-kaya.de/Bilder/kaya-logo-quadrat.png"
|
||||
alt="Workflow" />
|
||||
</div>
|
||||
<span
|
||||
class="text-white px-3 py-2 text-lg font-medium">{$_('application_name')}</span>
|
||||
<div class="hidden md:block">
|
||||
<div class="ml-10 flex items-baseline space-x-4">
|
||||
<a
|
||||
@@ -267,16 +269,15 @@ import NotFound from "./NotFound.svelte";
|
||||
<div class="mt-3 px-2 space-y-1">
|
||||
<a
|
||||
href="#"
|
||||
class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">Your
|
||||
Profile</a>
|
||||
class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">{$_('your_profile')}</a>
|
||||
|
||||
<a
|
||||
href="#"
|
||||
class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">Settings</a>
|
||||
class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">{$_('settings')}</a>
|
||||
|
||||
<a
|
||||
href="#"
|
||||
class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">$_('signout')</a>
|
||||
class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">{$_('signout')}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user