Add not-found page

This commit is contained in:
Akira Tempaku 2024-02-24 20:31:06 +09:00
commit 44a2a26ffc
2 changed files with 21 additions and 0 deletions
src/components

View file

@ -0,0 +1,14 @@
(uiop:define-package #:hp/components/not-found
(:use #:cl)
(:local-nicknames (#:pi #:piccolo))
(:import-from #:hp/components/layout
#:layout)
(:export #:not-found-page))
(in-package #:hp/components/not-found)
(pi:define-element not-found-page ()
(pi:h
(layout
(section :class "h-full flex justify-center items-center"
(h1 :class "text-error text-4xl"
"404 Not Found")))))