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

28 lines
718 B
TypeScript
Raw Normal View History

2023-07-01 07:03:01 +00:00
import { QuartzComponentConstructor } from "./types"
import style from "./styles/footer.scss"
interface Options {
authorName: string,
links: Record<string, string>
}
export default ((opts?: Options) => {
function Footer() {
const year = new Date().getFullYear()
const name = opts?.authorName ?? "someone"
const links = opts?.links ?? []
return <>
<hr />
<footer>
2023-07-02 20:08:29 +00:00
<p>Made by {name} using <a href="https://quartz.jzhao.xyz/">Quartz</a>, © {year}</p>
2023-07-01 07:03:01 +00:00
<ul>{Object.entries(links).map(([text, link]) => <li>
<a href={link}>{text}</a>
</li>)}</ul>
</footer>
</>
}
Footer.css = style
return Footer
}) satisfies QuartzComponentConstructor