diff --git a/js/hubs/components/NavBar.js b/js/hubs/components/NavBar.js index 6e6d308b..246d4c88 100644 --- a/js/hubs/components/NavBar.js +++ b/js/hubs/components/NavBar.js @@ -173,7 +173,7 @@ const NavBar = ({ hubPubkey }) => { - + {' '} This subdomain will soon be deprecated. Please visit{' '} @@ -182,7 +182,7 @@ const NavBar = ({ hubPubkey }) => { to access or create hubs{' '} - + {!mobileView && canAddContent && getMenuButtons(hubData?.handle)} {!wallet?.connected && ( @@ -376,6 +376,17 @@ const CtaWrapper = styled(Box)(({ theme }) => ({ alignItems: 'center', })) +const Redirect = styled(Typography)(({ theme }) => ({ + display: 'flex', + alignItems: 'center', + [theme.breakpoints.down('md')]: { + width: '80vw', + margin: '140px auto', + display: 'flex', + flexDirection: 'column', + }, +})) + const StyledAppBar = styled(AppBar)(({ theme }) => ({ backgroundColor: theme.palette.background.default, color: 'black',