quartz-research-note/quartz/components/pages/404.tsx

13 lines
292 B
TypeScript
Raw Normal View History

2023-09-07 04:02:21 +00:00
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