import Link from 'next/link'
import { useState } from 'react'
export default function MobileMenu() {
const [isActive, setIsActive] = useState({
status: false,
key: "",
})
const handleToggle = (key) => {
if (isActive.key === key) {
setIsActive({
status: false,
})
} else {
setIsActive({
status: true,
key,
})
}
}
return (
<>
{/* DROPDOWN SUB MENU */}
-
handleToggle(1)}>
About
- Why Martex?
- Integrations
- How It Works
- Best Solutions
- Testimonials
{/* SIMPLE NAVIGATION LINK */}
- Features
{/* MEGAMENU */}
-
handleToggle(2)}>
Pages
{/* MEGAMENU LINKS */}
- About Us
- Our Team
- Careers 4
- Career Details
- Contact Us
{/* MEGAMENU LINKS */}
- Core Features
- Our Projects
- Project Details
- Testimonials
- Download Page
{/* MEGAMENU LINKS */}
- Pricing Page #1
- Pricing Page #2
- FAQs Page
- Help Center
- 404 Page
{/* MEGAMENU LINKS */}
- Blog Listing
- Single Blog Post
- Login Page
- Signup Page
- Reset Password
{/* End row */}
{/* End container */}
{/* End wsmegamenu */}
{/* END MEGAMENU */}
{/* SIMPLE NAVIGATION LINK */}
- Pricing
{/* SIMPLE NAVIGATION LINK */}
- FAQs
{/* SIGN IN LINK */}
-
Sign in
{/* SIGN UP BUTTON */}
-
Sign
up
>
)
}