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