Files
data/src/interfaces/testimonials.ts
T
naomi 445853b28f
Node.js CI / Lint and Test (push) Failing after 1m4s
feat: add testimonials, fix funding
2025-09-23 12:41:59 -07:00

12 lines
191 B
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
export type Testimonials = Array<{
name: string;
content: string;
date: string;
}>;