mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-01-14 22:18:43 +00:00
13 lines
292 B
TypeScript
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
|