Regular Menu in NextJS
Let's start by making a menu from regular links:
export default function Menu() {
return <>
<a href="/">home</a>
<a href="/about">about</a>
<a href="/price">price</a>
<a href="/contacts">contacts</a>
</>;
}
Create links in your site's main menu component that lead to your site's pages.