Rename components to ui

This commit is contained in:
Akira Tempaku 2024-01-30 10:16:17 +09:00
parent 72ef5ae639
commit 48c1dbd097
2 changed files with 3 additions and 3 deletions
src/components

View file

@ -1,16 +0,0 @@
(defpackage #:hp/components/layout
(:use #:cl)
(:import-from #:markup)
(:export #:layout))
(in-package #:hp/components/layout)
(markup:enable-reader)
(markup:deftag layout (children)
<html>
<head>
<title>skyizwhite.dev</title>
<script src="https://unpkg.com/htmx.org@1.3.1"></script>
</head>
<body>,@(progn children)</body>
</html>)