handleNotificationClick(n)}
+ onKeyDown={(e) => e.key === 'Enter' && handleNotificationClick(n)}
+ className={`block px-4 py-3 hover:bg-neutral-50 dark:hover:bg-neutral-800/50 cursor-pointer ${!n.read ? 'bg-brand-orange/5 dark:bg-brand-orange/10' : ''}`}
+ >
+
+ {getTypeIcon(n.type)}
+
+
+ {n.title}
+
+ {n.body && (
+
+ {n.body}
+
+ )}
+
+ {formatTimeAgo(n.created_at)}
+
+
+
+
+ )}
+