forked from coracle/flotilla
28 lines
782 B
Svelte
28 lines
782 B
Svelte
<script lang="ts">
|
|
import {fly} from "@lib/transition"
|
|
import Icon from "@lib/components/Icon.svelte"
|
|
import Page from "@lib/components/Page.svelte"
|
|
import SecondaryNav from "@lib/components/SecondaryNav.svelte"
|
|
import SecondaryNavItem from "@lib/components/SecondaryNavItem.svelte"
|
|
import SecondaryNavSection from "@lib/components/SecondaryNavSection.svelte"
|
|
</script>
|
|
|
|
<SecondaryNav>
|
|
<SecondaryNavSection>
|
|
<div in:fly>
|
|
<SecondaryNavItem href="/discover">
|
|
<Icon icon="widget" /> Spaces
|
|
</SecondaryNavItem>
|
|
</div>
|
|
<div in:fly={{delay: 50}}>
|
|
<SecondaryNavItem href="/discover/themes">
|
|
<Icon icon="pallete-2" /> Themes
|
|
</SecondaryNavItem>
|
|
</div>
|
|
</SecondaryNavSection>
|
|
</SecondaryNav>
|
|
|
|
<Page>
|
|
<slot />
|
|
</Page>
|