2024-03-04 13:49:29 -05:00
|
|
|
import Alert from '@mui/material/Alert/Alert';
|
|
|
|
import Box from '@mui/material/Box/Box';
|
|
|
|
import Button from '@mui/material/Button/Button';
|
2023-05-19 11:43:25 -04:00
|
|
|
import React from 'react';
|
2024-03-04 13:49:29 -05:00
|
|
|
import { Link } from 'react-router-dom';
|
2023-05-19 11:43:25 -04:00
|
|
|
|
|
|
|
import Page from 'components/Page';
|
|
|
|
import globalize from 'scripts/globalize';
|
|
|
|
|
2024-03-04 13:49:29 -05:00
|
|
|
const NotificationsPage = () => (
|
2023-05-19 11:43:25 -04:00
|
|
|
<Page
|
|
|
|
id='notificationSettingPage'
|
|
|
|
title={globalize.translate('Notifications')}
|
|
|
|
className='mainAnimatedPage type-interior'
|
|
|
|
>
|
|
|
|
<div className='content-primary'>
|
|
|
|
<h2>{globalize.translate('Notifications')}</h2>
|
2024-03-04 13:49:29 -05:00
|
|
|
|
|
|
|
<Alert severity='info'>
|
|
|
|
<Box sx={{ marginBottom: 2 }}>
|
|
|
|
{globalize.translate('NotificationsMovedMessage')}
|
|
|
|
</Box>
|
|
|
|
<Button
|
|
|
|
component={Link}
|
|
|
|
to='/dashboard/plugins/add?name=Webhook&guid=71552a5a5c5c4350a2aeebe451a30173'
|
|
|
|
>
|
|
|
|
{globalize.translate('GetThePlugin')}
|
|
|
|
</Button>
|
|
|
|
</Alert>
|
2023-05-19 11:43:25 -04:00
|
|
|
</div>
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
|
2024-03-04 13:49:29 -05:00
|
|
|
export default NotificationsPage;
|