about/credits: move beta tester listing to component
Some checks failed
Run service tests / test service functionality (push) Has been cancelled
Run tests / check lockfile correctness (push) Has been cancelled
Run tests / web sanity check (push) Has been cancelled
Run tests / api sanity check (push) Has been cancelled
Run service tests / test service: ${{ matrix.service }} (push) Has been cancelled

this is to prevent it from showing up in i18n
This commit is contained in:
dumbmoron 2024-10-04 12:23:48 +00:00
parent 1a9494b60a
commit 4317b128a8
No known key found for this signature in database
2 changed files with 34 additions and 11 deletions

View file

@ -3,6 +3,7 @@
import { t } from "$lib/i18n/translations"; import { t } from "$lib/i18n/translations";
import SectionHeading from "$components/misc/SectionHeading.svelte"; import SectionHeading from "$components/misc/SectionHeading.svelte";
import BetaTesters from "$components/misc/BetaTesters.svelte";
</script> </script>
<section id="testers"> <section id="testers">
@ -13,17 +14,7 @@
huge shoutout to our thing breakers for testing updates early and making sure they're stable. huge shoutout to our thing breakers for testing updates early and making sure they're stable.
they also helped us ship cobalt 10! they also helped us ship cobalt 10!
- codfish246 <BetaTesters />
- [damir](https://otomir23.me/)
- Hunter
- [hyperdefined](https://hyper.lol/)
- [KwiatekMiki](https://kwiatekmiki.com/)
- [Lao](https://lao.ooo/)
- [lostdusty](https://lostdusty.dev.br/)
- [noblereign](https://fursona.directory/@frost)
- [Spax](https://spax.zone/)
- [synzr](https://synzr.space/)
- [vimae](https://mae.wtf/)
all links are external and lead to their personal websites or social media. all links are external and lead to their personal websites or social media.
</section> </section>

View file

@ -0,0 +1,32 @@
<script lang="ts">
import OuterLink from "./OuterLink.svelte";
type Tester = { name: string, url?: string };
const credits: Tester[] = [
{ name: "codfish246" },
{ name: "damir", url: "https://otomir23.me/" },
{ name: "Hunter" },
{ name: "hyperdefined", url: "https://hyper.lol/" },
{ name: "KwiatekMiki", url: "https://kwiatekmiki.com/" },
{ name: "Lao", url: "https://lao.ooo/" },
{ name: "lostdusty", url: "https://lostdusty.dev.br/" },
{ name: "noblereign", url: "https://fursona.directory/@frost" },
{ name: "Spax", url: "https://spax.zone/" },
{ name: "synzr", url: "https://synzr.space/" },
{ name: "vimae", url: "https://mae.wtf/" }
];
</script>
<ul>
{#each credits as { name, url }}
<li>
{#if url}
<OuterLink href={url}>
{name}
</OuterLink>
{:else}
{name}
{/if}
</li>
{/each}
</ul>