diff --git a/src/components/NavBar/index.tsx b/src/components/NavBar/index.tsx index b953822e5..bec619e4e 100644 --- a/src/components/NavBar/index.tsx +++ b/src/components/NavBar/index.tsx @@ -16,7 +16,7 @@ const FULL_BORDER_RADIUS = 9999 const Nav = styled.nav` padding: 20px 12px; - width: 100%; + width: 100vw; height: ${({ theme }) => theme.navHeight}px; z-index: 2; ` @@ -32,6 +32,17 @@ const DocsLink = styled(ExternalLink)` padding: 0.5rem 1rem; ` +const Banner = styled.div` + width: 100%; + text-align: center; + background-color: red; + color: white; + font-size: large; + padding-top: 4px; + padding-bottom: 4px; + font-weight: 600; +` + interface MenuItemProps { href: string id?: NavLinkProps['id'] @@ -80,7 +91,8 @@ const Navbar = () => { const navigate = useNavigate() return ( - <> +
+ Mauve is no longer operational and will be closing down permanently in the near future. - +
) }