+
+
+
+ {data?.data.message}
+
+
+
+
+ {data?.data.event_type}
+
+
+
+ {data?.data.link}
+
+
+
+
+ {data?.data.priority}
+
+
+
+
+ {data?.data.type}
+
+
+
+ {data?.data.seen_at}
+
+
+
+
+ {data?.data.is_scheduled ? "Yes" : "No"}
+
+
+ {data?.data.seen ? "Yes" : "No"}
+
+
+
+ >
+ );
+};
+
+export default NotificationDetailsPage;
diff --git a/src/app/(notifications)/notification-history/page.tsx b/src/app/(notifications)/notification-history/page.tsx
new file mode 100644
index 0000000..81854d7
--- /dev/null
+++ b/src/app/(notifications)/notification-history/page.tsx
@@ -0,0 +1,24 @@
+import Breadcrumb from "@/components/Breadcrumbs/Breadcrumb";
+import NotificationHistoryTable from "@/components/Tables/notification-history";
+import { BreadcrumbItem } from "@/types/shared";
+
+const NotificationHistoryPage = () => {
+ const breadcrumbItems: BreadcrumbItem[] = [
+ {
+ href: "/",
+ name: "Dashboard",
+ },
+ {
+ href: "/notification-history",
+ name: "Notification history",
+ },
+ ];
+ return (
+ <>
+