import Link from "next/link.js"; import { AuthorConfig, NavLink } from "../types"; interface Props { author: AuthorConfig; links?: Array; } // TODO replace this with some nice tailwindui footer export const Footer: React.FC = ({ links, author }) => { return ( ); };