From a1ebaf176d6373b179bc563a519a0fa37b1bc0c3 Mon Sep 17 00:00:00 2001 From: Beat Hagenlocher Date: Sat, 29 Jun 2024 00:57:45 +0200 Subject: Add more content & first tags --- pollen.rkt | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'pollen.rkt') diff --git a/pollen.rkt b/pollen.rkt index a18e169..5fb2194 100644 --- a/pollen.rkt +++ b/pollen.rkt @@ -22,3 +22,13 @@ `(ul ([class "flex flex-wrap justify-center"] [aria-label "Tools/Techniques used"]) ,(for/splice ([topic top-list]) (badge topic))))) +(define (link text url) + `(a ([class ,"text-[@{jordy}] hover:underline decoration-2 underline-offset-2 decoration-[@{jordy}] hover:text-[@{jordy}]"] [rel "noreferrer noopener"] [target "_blank"] [href ,url]) + ,text)) + +(define (id-ify text) + (string-replace (string-downcase text) " " "-")) + +(define (heading text) + `(h1 ([id ,(id-ify text)] [class ,"text-3xl font-fira-code text-[@{jordy}] tracking-tighter leading-snug"]) + ,text)) -- cgit v1.2.3