diff --git a/components/notification.jsx b/components/notification.jsx
new file mode 100644
index 0000000..cf4bedf
--- /dev/null
+++ b/components/notification.jsx
@@ -0,0 +1,27 @@
+import Sidebar from "./Sidebar";
+import Navbar from "./Navbar";
+import Image from "next/image";
+import Bell from "@/public/images/bell.png";
+
+function Notification() {
+ return (
+
+
+
+
+
+
+
+
+
No notification
+
+ Your notification is empty. Once you receive a notification, it will appear here.
+
+
+
+
+
+ );
+}
+
+export default Notification;
diff --git a/pages/notification/index.js b/pages/notification/index.js
new file mode 100644
index 0000000..6b8710b
--- /dev/null
+++ b/pages/notification/index.js
@@ -0,0 +1,12 @@
+import React from "react";
+import Notification from "../../components/notification";
+
+function index() {
+ return (
+
+
+
+ );
+}
+
+export default index;
diff --git a/public/images/bell.png b/public/images/bell.png
new file mode 100644
index 0000000..81f75ea
Binary files /dev/null and b/public/images/bell.png differ