done mobile navbar and users

This commit is contained in:
2026-03-16 16:29:16 +08:00
parent 62bb558706
commit 925804021a
11 changed files with 313 additions and 128 deletions

View File

@@ -5,7 +5,6 @@ import styles from "./styles.module.css";
import NavLeft from "./navleft/Header";
import NavRight from "./navright/Profile";
import HamburgerIcon from "../../components/icons/hamburger";
import VerticalEllipsis from "../icons/verticalEllipsis";
import useIsMobile from "@/app/hooks/useIsMobile";
const Navbar = () => {
@@ -18,9 +17,7 @@ const Navbar = () => {
<NavLeft />
</div>
{/* Mobile Menu Button */}
<div className={styles.mobileEllipsis}>
{isMobile ? <VerticalEllipsis /> : <NavRight />}
</div>
<NavRight />
</div>
);
};