vibe some styles
Deploy ${{ gitea.repository }} / build (push) Successful in 1s

This commit is contained in:
2026-01-02 01:08:12 -05:00
parent 106aa3241c
commit 1dd84c980a
3 changed files with 177 additions and 31 deletions
+30 -28
View File
@@ -9,34 +9,36 @@
(:gen-class))
(def index
(str (h/html [:title "Ajet Dashboard"]
[:link {:rel "stylesheet", :href "/css/style.css"}]
[:link
{:rel "icon",
:type "image/x-icon",
:href
"https://data-star.dev/cdn-cgi/image/format=auto/static/images/rocket-48x48-4c739bfaffe86a6ffcc3a6d77e3c5547730f03d74c11aa460209596d1811f7a3.png"}]
[:h2 "Public Services:"]
[:ul
[:li [:a {:href "https://git.ajet.fyi/"} "git"]]
[:li [:a {:href "https://status.ajet.fyi/"} "status"]]
[:li [:a {:href "https://blog.ajet.fyi/"} "blog"]]]
[:h2 "Personal Quicklist:"]
[:ul
[:li [:a {:href "https://devbox.ajet.fyi"} "devbox"]]
[:li [:a {:href "https://git.ajet.fyi/ajet-industries"} "Ajet Industries"]]
[:li [:a {:href "https://git.ajet.fyi/explore/repos"} "repos"]]
[:li [:a {:href "https://ebooks.ajet.fyi"} "ebooks"]]
[:li [:a {:href "https://uptime.ajet.fyi"} "uptime"]]
[:li [:a {:href "https://service-manager.ajet.fyi"} "ci"]]
[:li [:a {:href "https://mini:8006"} "cluster"]]
[:li [:a {:href "http://192.168.1.124:8081"} "mp4"]]
[:li [:a {:href "http://24.97.151.11/aca/index.html#view"} "upstate live feed"]]]
[:h2 "Keymap:"]
[:img {:src "https://git.ajet.fyi/ajet/zmk-corne-rotary-pad/media/branch/main/keymap-drawer/eyelash_corne.svg"
:width "60%"}]
[:script {:src "https://cdn.jsdelivr.net/npm/eruda"}]
[:script "eruda.init()"])))
(str (h/html [:head
[:meta {:charset "utf-8"}]
[:meta {:name "viewport" :content "width=device-width, initial-scale=1"}]
[:title "Ajet Dashboard"]
[:link {:rel "stylesheet", :href "/css/style.css"}]
[:link
{:rel "icon",
:type "image/x-icon",
:href
"https://data-star.dev/cdn-cgi/image/format=auto/static/images/rocket-48x48-4c739bfaffe86a6ffcc3a6d77e3c5547730f03d74c11aa460209596d1811f7a3.png"}]]
[:body
[:h1 "Ajet Dashboard"]
[:h2 "Public Services"]
[:ul
[:li [:a {:href "https://git.ajet.fyi/"} "git"]]
[:li [:a {:href "https://status.ajet.fyi/"} "status"]]
[:li [:a {:href "https://blog.ajet.fyi/"} "blog"]]]
[:h2 "Personal Quicklist"]
[:ul
[:li [:a {:href "https://devbox.ajet.fyi"} "devbox"]]
[:li [:a {:href "https://git.ajet.fyi/ajet-industries"} "Ajet Industries"]]
[:li [:a {:href "https://git.ajet.fyi/explore/repos"} "repos"]]
[:li [:a {:href "https://ebooks.ajet.fyi"} "ebooks"]]
[:li [:a {:href "https://uptime.ajet.fyi"} "uptime"]]
[:li [:a {:href "https://service-manager.ajet.fyi"} "ci"]]
[:li [:a {:href "https://mini:8006"} "cluster"]]
[:li [:a {:href "http://192.168.1.124:8081"} "mp4"]]
[:li [:a {:href "http://24.97.151.11/aca/index.html#view"} "upstate live feed"]]]
[:h2 "Keymap"]
[:img {:src "https://git.ajet.fyi/ajet/zmk-corne-rotary-pad/media/branch/main/keymap-drawer/eyelash_corne.svg"}]])))
(defroutes approutes
(GET "/" [] index))