import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" import style from "./styles/footer.scss" import FooterLinksConstructor from "./Footer_links" import Btn8831 from "./Btn8831" interface Options { links: Record rings: Record } export default ((opts?: Options) => { const FooterLinks = FooterLinksConstructor(opts) const CustomFooter: QuartzComponent = ({ displayClass, cfg }: QuartzComponentProps) => { return ( ) } CustomFooter.css = style return CustomFooter }) satisfies QuartzComponentConstructor