Skip to content

Commit 9a9426f

Browse files
committed
Use the right tailwind css file 🤦‍♂️
1 parent b2f6abc commit 9a9426f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE HTML><html dir="ltr" lang="en"><head><meta charset="utf-8" /><meta content="width=device-width, initial-scale=1" name="viewport" /><title>Joy Framework</title><link rel="stylesheet" href="css/atom-one-light.css" /><link rel="stylesheet" href="tailwind.min.css" /><link rel="stylesheet" href="css/app.css" /></head><body><div class="lg:mt-10"><div class="lg:w-2/3 p-4 mx-auto"><div class="self-stretch flex-row lg:flex lg:space-x-4"><div class="flex-1"><div class="self-stretch flex-col flex-1 space-y-2"><h1 class="text-5xl text-gray-800">Joy</h1><h2 class="text-3xl tracking-tight text-gray-800">A maximalist web framework for lisp aficionados</h2><h4 class="text-l text-gray-800">Use the <a href="https://janet-lang.org" class="text-indigo-500 underline">janet</a> programming language to build web apps faster with less code and very low memory usage.</h4><div class="mt-4"><a href="https://github.com/joy-framework/joy/blob/master/docs/introduction.md" class="inline-block my-6 px-5 py-3 rounded-lg bg-indigo-500 text-white shadow-lg hover:bg-indigo-700">Read the docs</a></div></div></div><div class="flex-1"><pre><code class="rounded-lg p-6 clojure">(import joy :prefix &quot;&quot;)
1+
<!DOCTYPE HTML><html dir="ltr" lang="en"><head><meta charset="utf-8" /><meta content="width=device-width, initial-scale=1" name="viewport" /><title>Joy Framework</title><link rel="stylesheet" href="css/atom-one-light.css" /><link rel="stylesheet" href="css/tailwind.min.css" /><link rel="stylesheet" href="css/app.css" /></head><body><div class="lg:mt-10"><div class="lg:w-2/3 p-4 mx-auto"><div class="self-stretch flex-row lg:flex lg:space-x-4"><div class="flex-1"><div class="self-stretch flex-col flex-1 space-y-2"><h1 class="text-5xl text-gray-800">Joy</h1><h2 class="text-3xl tracking-tight text-gray-800">A maximalist web framework for lisp aficionados</h2><h4 class="text-l text-gray-800">Use the <a href="https://janet-lang.org" class="text-indigo-500 underline">janet</a> programming language to build web apps faster with less code and very low memory usage.</h4><div class="mt-4"><a href="https://github.com/joy-framework/joy/blob/master/docs/introduction.md" class="inline-block my-6 px-5 py-3 rounded-lg bg-indigo-500 text-white shadow-lg hover:bg-indigo-700">Read the docs</a></div></div></div><div class="flex-1"><pre><code class="rounded-lg p-6 clojure">(import joy :prefix &quot;&quot;)
22

33
(route :get &quot;&#x2F;&quot; :home)
44

layout.janet

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[:meta {:name "viewport" :content "width=device-width, initial-scale=1"}]
1010
[:title (get options :title "Joy Framework")]
1111
[:link {:href "css/atom-one-light.css" :rel "stylesheet"}]
12-
[:link {:href "tailwind.min.css" :rel "stylesheet"}]
12+
[:link {:href "css/tailwind.min.css" :rel "stylesheet"}]
1313
[:link {:href "css/app.css" :rel "stylesheet"}]]
1414
[:body body
1515
[:script {:data-goatcounter "https://joyframework.goatcounter.com/count"

0 commit comments

Comments
 (0)