Index: pages/index/approvedBuilds.telefunc.ts
===================================================================
--- pages/index/approvedBuilds.telefunc.ts	(revision b69759dc4c8f1a000afc0d0c5c5afcc6868641fb)
+++ pages/index/approvedBuilds.telefunc.ts	(revision b69759dc4c8f1a000afc0d0c5c5afcc6868641fb)
@@ -0,0 +1,11 @@
+import * as drizzleQueries from "../../database/drizzle/queries";
+import { ctx } from "../../server/telefunc/ctx";
+
+export async function getApprovedBuildCards( { limit }
+                                       : { limit?: number }) {
+    const context = ctx();
+
+    const approvedBuilds = await drizzleQueries.getApprovedBuilds(context.db, limit);
+
+    return approvedBuilds;
+}
