import { memo } from "react"; import Link from "next/link"; import ThemeToggle from "../ThemeToggle/ThemeToggle"; import { HomeIcon, NotesIcon, ProjectsIcon, ContactIcon } from "../Icons"; import styles from "./Menu.module.css"; const links = [ { icon: , text: "Home", href: "/", }, { icon: , text: "Notes", href: "/notes/", }, { icon: , text: "Projects", href: "/projects/", }, { icon: , text: "Contact", href: "/contact/", }, ]; const Menu = () => ( ); export default memo(Menu);