import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" import style from "./styles/customfooter.scss" import btnstyle from "./styles/buttons8831.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 + btnstyle return CustomFooter }) satisfies QuartzComponentConstructor