diff --git a/web/src/App.tsx b/web/src/App.tsx index 6b28558..8f410bc 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -12,6 +12,7 @@ import { loadActiveCertificate } from './recoil/api'; import { useWallet } from './hooks/useWallet'; import Loading from './components/Loading'; import { getRpcNode, useRpcNode } from './hooks/useRpcNode'; +import { Alert, Button } from '@mui/material'; // Lazy loading all pages in appropriate time const DeploymentStepper = lazy(() => import('./components/DeploymentStepper')); @@ -34,6 +35,28 @@ const Welcome = () => { return <>; }; +const DepricationNotice = () => { + const message = 'joined forces, the Overclock core team is pausing active development and bug fixes for Console. Please use Cloudmos Deploy for your Akash Network deployments'; + const cloudmosUrl = 'https://deploy.cloudmos.io/'; + + const handleCtaClick = () => { + window.location.href = cloudmosUrl; + }; + + return + +
+ Now that Cloudmos and Overclock labs have  + joined forces, + the Overclock core team is pausing active development and bug fixes for Console. Please use  + Cloudmos Deploy +  for your Akash Network deployments. +
+
+
+
; +}; + const Help = () => { window.location.href = 'https://docs.akash.network/guides/deploy'; @@ -44,6 +67,7 @@ const AppRouter = () => { return (
+ } />