export interface Notification { id: string; title: string; message: string; type: "whale" | "weather" | "excursion" | "info"; timestamp: string; read: boolean; }