You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
901 B

<script>
import Button from "./Button.svelte";
export let page;
</script>
<section class="container bg-gray-800 rounded-lg shadow-lg p-3 flex gap-3 justify-between justify-items-stretch items-center -mt-10 z-20">
{#if page == "/"}
<Button href="/" active="true">
🏠 Home
</Button>
{:else}
<Button href="/">
🏠 Home
</Button>
{/if}
{#if page == "/commissions"}
<Button href="/commissions" active="true">
🎨 Commission Info
</Button>
{:else}
<Button href="/commissions">
🎨 Commission Info
</Button>
{/if}
{#if page == "/contact"}
<Button href="/contact" active="true">
✉️ Social Links
</Button>
{:else}
<Button href="/contact">
✉️ Social Links
</Button>
{/if}
</section>