Commit 85145f0b authored by Nawasan Wisitsingkhon's avatar Nawasan Wisitsingkhon

update navbar

parent 9d4c40e4
...@@ -5,7 +5,6 @@ final exam of web programming with ~~PHP~~ **JavaScript** and using ~~Framework~ ...@@ -5,7 +5,6 @@ final exam of web programming with ~~PHP~~ **JavaScript** and using ~~Framework~
... and MVC ... and MVC
<p align="center"> <p align="center">
<img alt="Github License" src="https://img.shields.io/github/license/nawasan111/final-exam" />
<img alt="GitHub Top Language" src="https://img.shields.io/github/languages/top/nawasan111/final-exam" /> <img alt="GitHub Top Language" src="https://img.shields.io/github/languages/top/nawasan111/final-exam" />
<img alt="" src="https://img.shields.io/github/repo-size/nawasan111/final-exam" /> <img alt="" src="https://img.shields.io/github/repo-size/nawasan111/final-exam" />
<img alt="GitHub Issues" src="https://img.shields.io/github/issues/nawasan111/final-exam" /> <img alt="GitHub Issues" src="https://img.shields.io/github/issues/nawasan111/final-exam" />
......
...@@ -65,20 +65,9 @@ function Navbar(props) { ...@@ -65,20 +65,9 @@ function Navbar(props) {
const [anchorEl, setAnchorEl] = React.useState(null); const [anchorEl, setAnchorEl] = React.useState(null);
const [mobileMoreAnchorEl, setMobileMoreAnchorEl] = React.useState(null); const [mobileMoreAnchorEl, setMobileMoreAnchorEl] = React.useState(null);
const [mobileOpen, setMobileOpen] = React.useState(false); const [mobileOpen, setMobileOpen] = React.useState(false);
const handleDrawerToggle = () => {
setMobileOpen(!mobileOpen);
};
const isMenuOpen = Boolean(anchorEl); const isMenuOpen = Boolean(anchorEl);
const isMobileMenuOpen = Boolean(mobileMoreAnchorEl); const isMobileMenuOpen = Boolean(mobileMoreAnchorEl);
const container =
window !== undefined ? () => window().document.body : undefined;
const handleProfileMenuOpen = (event) => {
setAnchorEl(event.currentTarget);
};
const handleMobileMenuClose = () => { const handleMobileMenuClose = () => {
setMobileMoreAnchorEl(null); setMobileMoreAnchorEl(null);
}; };
...@@ -180,18 +169,23 @@ function Navbar(props) { ...@@ -180,18 +169,23 @@ function Navbar(props) {
] ]
: [ : [
{ {
label: "Register", label: "",
element: ( element: (
<span className="inline-block mx-3 hover:underline">Register</span> <span className="inline-block mx-3 hover:underline">
เข้าสู่ระบบ
</span>
), ),
link: "/register", link: "/login",
}, },
{ {
lable: "Login", label: "",
element: ( element: (
<span className="inline-block mx-3 hover:underline">Login</span> <span className="inline-block mx-3 hover:underline">
สมัครสมาชิก
</span>
), ),
link: "/login", link: "/register",
}, },
]; ];
...@@ -262,7 +256,7 @@ function Navbar(props) { ...@@ -262,7 +256,7 @@ function Navbar(props) {
<Box sx={{ flexGrow: 1 }} /> <Box sx={{ flexGrow: 1 }} />
<Box sx={{ display: { xs: "none", md: "flex" } }}> <Box sx={{ display: { xs: "none", md: "flex" } }}>
{MenuList.map((menu, idx) => ( {MenuList.map((menu, idx) => (
<Link className="text-white" key={idx} href={menu.link}> <Link title={menu.label} className="text-white" key={idx} href={menu.link}>
<span>{menu.element}</span> <span>{menu.element}</span>
</Link> </Link>
))} ))}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment