Add not-found page
This commit is contained in:
parent
e139f746bc
commit
44a2a26ffc
2 changed files with 21 additions and 0 deletions
src/components
14
src/components/not-found.lisp
Normal file
14
src/components/not-found.lisp
Normal 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")))))
|
Loading…
Add table
Add a link
Reference in a new issue