feat: add testimonials, fix funding
Node.js CI / Lint and Test (push) Failing after 1m4s

This commit is contained in:
2025-09-23 12:41:59 -07:00
parent 4d9fae6928
commit 445853b28f
5 changed files with 161 additions and 366 deletions
+11
View File
@@ -0,0 +1,11 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
export type Testimonials = Array<{
name: string;
content: string;
date: string;
}>;