import UserSettings from '@app/components/UserProfile/UserSettings'; import UserNotificationSettings from '@app/components/UserProfile/UserSettings/UserNotificationSettings'; import UserNotificationsEmail from '@app/components/UserProfile/UserSettings/UserNotificationSettings/UserNotificationsEmail'; import useRouteGuard from '@app/hooks/useRouteGuard'; import { Permission } from '@app/hooks/useUser'; import type { NextPage } from 'next'; const NotificationsPage: NextPage = () => { useRouteGuard(Permission.MANAGE_USERS); return ( ); }; export default NotificationsPage;