diff --git a/src/components/CommunityContributors.astro b/src/components/CommunityContributors.astro
new file mode 100644
index 0000000..018b586
--- /dev/null
+++ b/src/components/CommunityContributors.astro
@@ -0,0 +1,107 @@
+---
+import { Image } from "astro:assets";
+import { community_contributors } from "../data/community-contributors.ts";
+---
+
+
+
+
diff --git a/src/data/community-contributors.ts b/src/data/community-contributors.ts
new file mode 100644
index 0000000..8be7c1e
--- /dev/null
+++ b/src/data/community-contributors.ts
@@ -0,0 +1,9 @@
+// Auto-generated from Python script
+
+export interface CommunityContributor {
+ url?: string;
+ icon: string;
+ name: string;
+}
+export const community_contributors: CommunityContributor[] = [
+]
diff --git a/src/pages/credits.astro b/src/pages/credits.astro
index 327c2c8..ff8a8fb 100644
--- a/src/pages/credits.astro
+++ b/src/pages/credits.astro
@@ -1,5 +1,6 @@
---
import Contributors from "../components/Contributors.astro";
+import CommunityContributors from "../components/CommunityContributors.astro";
import { ContributorType } from "../data/contributors";
import Layout from "../layouts/Layout.astro";
---
@@ -15,6 +16,12 @@ import Layout from "../layouts/Layout.astro";
+
+
Community
+
Smaller contributions by the wider community
+
+
+
Past contributors
We are ever greatful for past contributions by these developers and wish them all their best on their journey beyond Northstar
@@ -39,11 +46,9 @@ import Layout from "../layouts/Layout.astro";