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