import Link from "next/link";
import { useRouter } from "next/router";
export default function Menu() {
const router = useRouter();
return (
<>
{/* DROPDOWN SUB MENU */}
-
About
-
Why MERMS?
-
How It Works
-
Contacts Us
-
F.A.Q.
{/* SIMPLE NAVIGATION LINK */}
-
Features
-
Sign in
{/* SIGN UP BUTTON */}
-
Sign up
>
);
}