diff --git a/src/lib/components/molecules/ContributorHost.svelte b/src/lib/components/molecules/ContributorHost.svelte
index 6a747a8..19cac70 100644
--- a/src/lib/components/molecules/ContributorHost.svelte
+++ b/src/lib/components/molecules/ContributorHost.svelte
@@ -1,7 +1,8 @@
- {#if data}
{#each data.repositories as { contributors, name }}
{/each}
- {/if}
-
\ No newline at end of file
+
diff --git a/src/routes/credits/+page.ts b/src/routes/credits/+page.ts
new file mode 100644
index 0000000..dca1b46
--- /dev/null
+++ b/src/routes/credits/+page.ts
@@ -0,0 +1,10 @@
+import type { Repository } from '$lib/types';
+
+export type APIOutput = { repositories: Repository[] };
+
+export async function load({
+ fetch
+}): APIOutput {
+ const response = await fetch('https://releases.rvcd.win/contributors');
+ return await response.json();
+}
diff --git a/src/routes/patches/+page.svelte b/src/routes/patches/+page.svelte
index bfe66b0..e1f5da3 100644
--- a/src/routes/patches/+page.svelte
+++ b/src/routes/patches/+page.svelte
@@ -1,43 +1,24 @@