import { memo } from "react"; import Link from "next/link"; import classNames from "classnames"; import { HeartIcon, NextjsLogo } from "../Icons"; import * as config from "../../lib/config"; import styles from "./Footer.module.css"; export type FooterProps = JSX.IntrinsicElements["footer"]; const Footer = ({ className, ...rest }: FooterProps) => ( ); export default memo(Footer);