Create notification page with the following fields:
https://github.com/dtutimes/main-website-v2/blob/c17c8b691bf9ed1991d7ee1409910c93199d8651/src/types/notification.ts
export interface ClientNotificationAction {
action: string;
link: string;
}
export interface ClientNotification {
title: string;
description: string;
actions: ClientNotificationAction[];
link?: string;
}