import { toast } from "sonner" import { useNotificationStore } from "./stores/notification-store" export function notify( message: string, type: "info" | "success" | "error" = "info", actionUrl?: string ) { toast(message) useNotificationStore.getState().addNotification(message, type, actionUrl) }