2025-10-25 22:04:41 +02:00
|
|
|
<script lang="ts">
|
2026-03-04 22:27:54 +01:00
|
|
|
import { _ } from "svelte-i18n";
|
2025-10-25 22:04:41 +02:00
|
|
|
|
2026-03-04 22:27:54 +01:00
|
|
|
const { hideName = false } = $props();
|
2025-10-25 22:04:41 +02:00
|
|
|
</script>
|
|
|
|
|
|
2026-03-06 18:04:49 +01:00
|
|
|
<img src="/logo.png" alt={$_("brand.name")} class="w-10 h-10 object-contain" />
|
2025-10-25 22:04:41 +02:00
|
|
|
<span
|
|
|
|
|
class={`logo text-3xl text-foreground opacity-90 tracking-wide font-extrabold drop-shadow-x ${hideName ? "hidden sm:inline-block" : ""}`}
|
|
|
|
|
>
|
2026-03-04 22:27:54 +01:00
|
|
|
{$_("brand.name")}
|
2025-10-25 22:04:41 +02:00
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.logo {
|
2026-03-04 22:27:54 +01:00
|
|
|
font-family: "Dancing Script", cursive;
|
2025-10-25 22:04:41 +02:00
|
|
|
}
|
|
|
|
|
</style>
|