Files
nym/explorer-nextjs/app/components/ReleaseAlert.tsx
T
2025-01-14 13:41:30 +01:00

10 lines
319 B
TypeScript

import { Alert, Box, Typography } from '@mui/material';
export const ReleaseAlert = () => (
<Alert severity="warning" sx={{ mb: 3, fontSize: 'medium', width: '100%' }}>
<Box>
<Typography>You are now viewing the legacy Nym mixnet explorer. Explorer 2.0 is coming soon.</Typography>
</Box>
</Alert>
);