Delete assets

This commit is contained in:
Akira Tempaku 2024-06-15 16:42:44 +09:00
parent ee637da21c
commit 1d5a6c1d8a
21 changed files with 16 additions and 423 deletions
src/routes

View file

@ -1,8 +1,7 @@
(defpackage #:hp/routes/not-found
(:use #:cl
#:hsx)
(:import-from #:hp/view/responser
#:response)
#:hsx
#:hp/response)
(:export #:handle-not-found))
(in-package #:hp/routes/not-found)
@ -12,10 +11,7 @@
(defcomp page ()
(hsx
(div :class "h-full place-content-center"
(h1
:class "text-rose-400 text-4xl text-center"
"404 Not Found"))))
(h1 "404 Not Found")))
(defun handle-not-found ()
(response (page)