Rename ui to components

This commit is contained in:
Akira Tempaku 2024-02-14 02:41:41 +09:00
parent 622252d0b5
commit db2c70496d
3 changed files with 6 additions and 6 deletions
src/components

View file

@ -0,0 +1,16 @@
(uiop:define-package #:hp/components/layout
(:use #:cl)
(:local-nicknames (#:pi #:piccolo))
(:export #:layout))
(in-package #:hp/components/layout)
(pi:define-element layout ()
(pi:h
(html
(head
(title "skyizwhite.dev")
(script :src "/static/htmx.min.js")
(link :href "/static/main.css" :rel "stylesheet")
(link :href "/static/tailwind.css" :rel "stylesheet"))
(body :class "h-[100svh]"
pi:children))))