website/src/components/layout.lisp

17 lines
496 B
Common Lisp
Raw Normal View History

2024-02-14 02:41:41 +09:00
(uiop:define-package #:hp/components/layout
2024-01-30 00:48:47 +09:00
(:use #:cl)
2024-02-09 05:54:51 +09:00
(:local-nicknames (#:pi #:piccolo))
2024-01-30 00:48:47 +09:00
(:export #:layout))
2024-02-14 02:41:41 +09:00
(in-package #:hp/components/layout)
2024-01-30 00:48:47 +09:00
2024-02-09 05:54:51 +09:00
(pi:define-element layout ()
(pi:h
2024-02-03 13:57:35 +09:00
(html
2024-02-09 05:54:51 +09:00
(head
(title "skyizwhite.dev")
2024-02-22 02:20:00 +09:00
(script :type "module" :src "http://localhost:5173/@vite/client")
(script :type "module" :src "http://localhost:5173/src/js/main.js"))
2024-02-21 20:42:41 +09:00
(body :class "h-[100svh] w-screen"
(main :class "h-full"
pi:children)))))