Files
sexy/packages/frontend/src/lib/components/logo/logo.svelte

19 lines
440 B
Svelte
Raw Normal View History

2025-10-25 22:04:41 +02:00
<script lang="ts">
import { _ } from "svelte-i18n";
2025-10-25 22:04:41 +02:00
const { hideName = false } = $props();
2025-10-25 22:04:41 +02:00
</script>
<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" : ""}`}
>
{$_("brand.name")}
2025-10-25 22:04:41 +02:00
</span>
<style>
.logo {
font-family: "Dancing Script", cursive;
2025-10-25 22:04:41 +02:00
}
</style>