quartz-research-note/quartz/components/Footer.tsx

33 lines
862 B
TypeScript
Raw Normal View History

import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-07-01 07:03:01 +00:00
import style from "./styles/footer.scss"
2023-07-23 00:27:41 +00:00
import { version } from "../../package.json"
2023-07-01 07:03:01 +00:00
interface Options {
links: Record<string, string>
}
export default ((opts?: Options) => {
function Footer({ displayClass }: QuartzComponentProps) {
2023-07-01 07:03:01 +00:00
const year = new Date().getFullYear()
const links = opts?.links ?? []
2023-07-23 00:27:41 +00:00
return (
<footer class={`${displayClass ?? ""}`}>
2023-07-23 00:27:41 +00:00
<hr />
<p>
Created with <a href="https://quartz.jzhao.xyz/">Quartz v{version}</a>, © {year}
</p>
<ul>
{Object.entries(links).map(([text, link]) => (
<li>
<a href={link}>{text}</a>
</li>
))}
</ul>
</footer>
)
2023-07-01 07:03:01 +00:00
}
Footer.css = style
return Footer
}) satisfies QuartzComponentConstructor