quartz-research-note/quartz/components/pages/404.tsx
2023-09-06 21:02:21 -07:00

13 lines
292 B
TypeScript

import { QuartzComponentConstructor } from "../types"
function NotFound() {
return (
<article class="popover-hint">
<h1>404</h1>
<p>Either this page is private or doesn't exist.</p>
</article>
)
}
export default (() => NotFound) satisfies QuartzComponentConstructor