SquidSpirit f195b9c108
Some checks failed
Frontend CI / build (push) Failing after 1m3s
PR Title Check / pr-title-check (pull_request) Successful in 13s
BLOG-58 refactor: run format
2025-07-23 05:27:46 +08:00

19 lines
666 B
Svelte

<script lang="ts">
import { page } from '$app/state';
import NavbarAction from '$lib/common/framework/ui/NavbarAction.svelte';
</script>
<div class="border-b border-gray-300">
<div
class="mx-auto flex h-toolbar-height max-w-screen-xl flex-row items-center justify-between px-4 md:px-6"
>
<a class="flex flex-row items-center gap-x-2" href="/">
<img class="mt-1 size-10" src="/icon/logo-light.svg" alt="SquidSpirit" />
<span class="text-2xl font-black text-gray-800">魚之魷魂</span>
</a>
<div class="flex flex-row items-center gap-x-6">
<NavbarAction label="首頁" link="/" isSelected={page.url.pathname === '/'} />
</div>
</div>
</div>