import { QuartzComponentConstructor } from "./types" import style from "./styles/footer.scss" import { version } from "../../package.json" interface Options { links: Record } export default ((opts?: Options) => { function Footer() { const year = new Date().getFullYear() const links = opts?.links ?? [] return ( ) } Footer.css = style return Footer }) satisfies QuartzComponentConstructor