Update first view

This commit is contained in:
Akira Tempaku 2024-11-17 22:18:59 +09:00
commit 65e09d2335
7 changed files with 28 additions and 16 deletions
src/components

View file

@ -0,0 +1,11 @@
(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")))))