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

25 lines
668 B
TypeScript
Raw Normal View History

2023-07-01 07:03:01 +00:00
import { QuartzComponentConstructor } from "./types"
import style from "./styles/footer.scss"
2023-07-10 02:32:24 +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() {
const year = new Date().getFullYear()
const links = opts?.links ?? []
return <footer>
2023-07-01 07:03:01 +00:00
<hr />
2023-07-10 02:32:24 +00:00
<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