From 761b4c880719aa62efd2ec540112dc6766c549ce Mon Sep 17 00:00:00 2001 From: Derek Liu Date: Tue, 30 Jun 2026 08:59:49 +0800 Subject: [PATCH 1/2] feat: implement RecentActivity feed component From 2744dc7043c6438cf660f7700b047cdbef7e3be7 Mon Sep 17 00:00:00 2001 From: Derek Liu Date: Tue, 30 Jun 2026 08:59:58 +0800 Subject: [PATCH 2/2] feat: add Notification and NotificationType types --- src/types/index.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/types/index.ts b/src/types/index.ts index 1392612..1500b6b 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -103,3 +103,16 @@ export interface DashboardStats { totalLoansValue: number; totalDividendsDistributed: number; } + +export type NotificationType = "contribution" | "loan" | "vote" | "distribution"; + +export interface Notification { + id: string; + type: NotificationType; + description: string; + timestamp: string; + read: boolean; + recipient: string; + groupName?: string; + amount?: number; +}