From 3d84be22e2d9eaa3e9ece3732ffcf8a91adde1bb Mon Sep 17 00:00:00 2001 From: RadekSabacky Date: Tue, 14 Jan 2025 13:41:30 +0100 Subject: [PATCH] + add releaseAlert component --- explorer-nextjs/app/components/ReleaseAlert.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 explorer-nextjs/app/components/ReleaseAlert.tsx diff --git a/explorer-nextjs/app/components/ReleaseAlert.tsx b/explorer-nextjs/app/components/ReleaseAlert.tsx new file mode 100644 index 0000000000..5d974420f9 --- /dev/null +++ b/explorer-nextjs/app/components/ReleaseAlert.tsx @@ -0,0 +1,9 @@ +import { Alert, Box, Typography } from '@mui/material'; + +export const ReleaseAlert = () => ( + + + You are now viewing the legacy Nym mixnet explorer. Explorer 2.0 is coming soon. + + +);