import { memo } from "react"; import Link from "next/link"; import Image from "next/image"; import ThemeToggle from "./ThemeToggle"; import { HomeIcon, NotesIcon, ProjectsIcon, ContactIcon } from "../icons"; import meJpg from "../../public/static/images/me.jpg"; import styles from "./Header.module.css"; const links = [ { icon: , text: "Home", href: "/", }, { icon: , text: "Notes", href: "/notes/", }, { icon: , text: "Projects", href: "/projects/", }, { icon: , text: "Contact", href: "/contact/", }, ]; const Header = () => (
); export default memo(Header);