randompage
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2024-09-07 20:10:55 +03:00
parent 441148fe84
commit 04b9cff4fe
No known key found for this signature in database
GPG Key ID: A3F0AC3F0FA52F3C

View File

@ -2,6 +2,7 @@ import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } fro
import style from "./styles/footer.scss"
import { version } from "../../package.json"
import { i18n } from "../i18n"
import script from "./scripts/_randomPage.inline"
interface Options {
links: Record<string, string>
@ -41,5 +42,6 @@ export default ((opts?: Options) => {
}
Footer.css = style
Footer.afterDOMLoaded = script
return Footer
}) satisfies QuartzComponentConstructor