Skip to content

Commit

Permalink
add link to coming soon page to mobile app btn
Browse files Browse the repository at this point in the history
  • Loading branch information
juancwu committed Apr 1, 2024
1 parent e806352 commit e61c7c2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Navbar/Menu.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { NavItems, Button } from '@components';
import { Link } from 'react-router-dom';

interface MenuProp {
showMenu: boolean;
Expand All @@ -9,11 +10,11 @@ const Menu: React.FC<MenuProp> = ({ showMenu, hideMenu }) => {
if (!showMenu) return;

return (
<div className="oveflow-hidden fixed right-0 top-0 z-50 h-screen max-w-[65%] w-full border border-white bg-white/20 px-10 py-24 backdrop-blur-lg">
<div className="oveflow-hidden fixed right-0 top-0 z-50 h-screen w-full max-w-[65%] border border-white bg-white/20 px-10 py-24 backdrop-blur-lg">
<NavItems isHorizontal={false} handleClick={hideMenu} />

<Button className="mt-20 block lg:hidden">
Application Portal
<Link to="/coming-soon">Application Portal</Link>
</Button>
</div>
);
Expand Down

0 comments on commit e61c7c2

Please sign in to comment.