chore: move shared types to its own file

This commit is contained in:
2026-05-28 11:32:03 -07:00
parent d7bb5e1e39
commit 6882b77629
+6
View File
@@ -0,0 +1,6 @@
export type Testimonial = {
name: string;
title: string;
avatar?: string;
quote: string;
};