fork
Configure Feed
Select the types of activity you want to include in your feed.
this repo has no description
fork
Configure Feed
Select the types of activity you want to include in your feed.
1<script lang="ts">
2 import Link from '$lib/Components/Link.svelte';
3 import type { ResolvedPathname } from '$app/types';
4
5 type Links = {
6 url: ResolvedPathname;
7 label: string;
8 }[];
9
10 let { links, current }: { links?: Links; current: string } = $props();
11</script>
12
13<section
14 class="align-items-center flex-row flex-wrap-no-wrap full-width gap-8 overflow-x-auto overflow-y-hidden squish-8"
15>
16 {#each links as link (link.url)}
17 <Link classes="text-color-cyan text-bold text-small" href={link.url}>{link.label}</Link>
18 <strong>»</strong>
19 {/each}
20 <span class="text-small white-space-nowrap">{current}</span>
21</section>