+ {t("notification.notificationText").replace( + /adminMail|skillName/gi, + (matched) => notificationTrad[matched] + )} +
+{notification.created_at}
+{t("sidepanel.profile")}
{t("sidepanel.notifications")}
+ +
{
skills.Skill.filter((field) => field.verified === false)
diff --git a/src/pages/notifications.tsx b/src/pages/notifications.tsx
new file mode 100644
index 00000000..b7eda6c5
--- /dev/null
+++ b/src/pages/notifications.tsx
@@ -0,0 +1,39 @@
+import React from "react";
+import CommonPage from "../components/templates/CommonPage";
+import { GET_NOTIFICATIONS } from "../graphql/queries/notifications";
+import { GetNotificationsQuery } from "../generated/graphql";
+import { useQuery } from "@apollo/client";
+import { useAuth0 } from "@auth0/auth0-react";
+import NotificationsPanel from "../components/organisms/NotificationPanel";
+
+const Notifications = ({}) => {
+ /*
+ * STATES
+ */
+ const { user } = useAuth0();
+ /*
+ * QUERIES
+ */
+ const { data: notifications } = useQuery