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