- {#each $repositories as { contributors: contribs, name }}
-
-
-
- {/each}
-
-
-
-
-
-
-
diff --git a/src/routes/docs/+layout.server.ts b/src/routes/docs/+layout.server.ts
deleted file mode 100644
index 448fea8..0000000
--- a/src/routes/docs/+layout.server.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import type { PageServerLoad } from './$types';
-
-import { index_content } from '$lib/documentation.server';
-
-// The load function here used to get data from a json file created by a (prerendered) server route.
-// This was because we could not prerender the documentation route before.
-// If you can no longer prerender the docs, then you are going to have to move the load functions here to a prerendered server route like before and fetch them here.
-export const prerender = true;
-
-export const load: PageServerLoad = () => ({ tree: index_content() });
diff --git a/src/routes/docs/+layout.svelte b/src/routes/docs/+layout.svelte
deleted file mode 100644
index ebbe13a..0000000
--- a/src/routes/docs/+layout.svelte
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-