pbw-explore/src/routes/+layout.svelte

22 řádky
563 B
Svelte

<script>
import { page } from '$app/stores';
import '../app.css';
$: homepage = !$page.params.type && !$page.params.date && $page.route.id !== '/[entry]/schedule';
</script>
{#if homepage}
<div class="px-6 xl:px-0 dark:bg-pbw-dark">
<div class="max-w-7xl mx-auto pt-10 pb-6">
<h1 class="text-5xl uppercase font-bold text-pbw-red">
<a href="https://prgblockweek.com">Prague Blockchain Week 2023</a>
</h1>
<div class="text-4xl text-pbw-yellow">June 2-11, 2023</div>
</div>
</div>
{/if}
<div class="pb-24 dark:bg-pbw-dark">
<slot />
</div>