repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
08f727e
parent
85e157e
author
Noelle Leigh
date
2025-12-26 13:46:44 -0500 EST
docs(pgs): Add docs link to marketing template

Taking inspiration from <https://pipe.pico.sh/> (commit 2aab941), this
patch adds "Docs" links to the top and bottom of the <https://pgs.sh/>
template, making it easy to jump straight to <https://pico.sh/pgs> with
a single click.

The markup has been slightly tweaked to improve the resulting layout.
1 files changed,  +6, -8
M pkg/apps/pgs/html/marketing.page.tmpl
+6, -8
 1@@ -30,10 +30,9 @@
 2 <header>
 3   <h1 class="text-2xl font-bold">{{.Site.Domain}}</h1>
 4   <p class="text-lg">A zero-install static site hosting service for hackers</p>
 5-  <div>
 6-    <a href="https://pico.sh/getting-started" class="btn-link my">
 7-      GET STARTED
 8-    </a>
 9+  <div class="flex gap my">
10+    <a href="https://pico.sh/getting-started" class="btn-link">GET STARTED</a>
11+    <a href="https://pico.sh/pgs" class="btn-link">DOCS</a>
12   </div>
13 
14   <hr />
15@@ -73,10 +72,9 @@
16       </p>
17     </div>
18 
19-    <div>
20-      <a href="https://pico.sh/getting-started" class="btn-link mt">
21-        GET STARTED
22-      </a>
23+    <div class="flex gap my">
24+      <a href="https://pico.sh/getting-started" class="btn-link">GET STARTED</a>
25+      <a href="https://pico.sh/pgs" class="btn-link">DOCS</a>
26     </div>
27   </div>
28 </header>