From 6882b7762926cc4eed8c9579ec5593e85bae4569 Mon Sep 17 00:00:00 2001 From: donny Date: Thu, 28 May 2026 11:32:03 -0700 Subject: [PATCH] chore: move shared types to its own file --- shared/types/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 shared/types/index.ts diff --git a/shared/types/index.ts b/shared/types/index.ts new file mode 100644 index 0000000..3a9af34 --- /dev/null +++ b/shared/types/index.ts @@ -0,0 +1,6 @@ +export type Testimonial = { + name: string; + title: string; + avatar?: string; + quote: string; +}; \ No newline at end of file