12 lines
286 B
Common Lisp
12 lines
286 B
Common Lisp
|
(defpackage #:hp/components/footer
|
||
|
(:use #:cl
|
||
|
#:hsx)
|
||
|
(:export #:page-footer))
|
||
|
(in-package #:hp/components/footer)
|
||
|
|
||
|
(defcomp page-footer ()
|
||
|
(hsx
|
||
|
(footer :class "fixed bottom-0 w-full"
|
||
|
(div :class "container py-6 flex justify-end"
|
||
|
(p "© 2025 skyizwhite")))))
|