- commit
- 457fc13
- parent
- 2b6624b
- author
- Eric Bower
- date
- 2024-02-19 21:04:46 +0000 UTC
docs(pgs): marketing copy
1 files changed,
+63,
-4
+63,
-4
1@@ -27,14 +27,73 @@
2 {{define "attrs"}}{{end}}
3
4 {{define "body"}}
5-<header class="text-center">
6+<header>
7 <h1 class="text-2xl font-bold">{{.Site.Domain}}</h1>
8- <p class="text-lg">{{.Site.Description}}</p>
9+ <p class="text-lg">A zero-install static site hosting service for hackers</p>
10 <div>
11- <a href="https://pico.sh/pgs" class="btn-link mt inline-block">
12- LEARN MORE
13+ <a href="https://pico.sh/pgs" class="btn-link my">
14+ GET STARTED
15 </a>
16 </div>
17+
18+ <hr />
19+
20+ <div class="group">
21+ <div class="box">
22+ <h2 class="text-xl">Features</h2>
23+ <ul>
24+ <li>10GB asset storage</li>
25+ <li>Terminal workflows</li>
26+ <li>No client-side installation required to fully manage static sites</li>
27+ <li>Distinct static sites as projects</li>
28+ <li>Unlimited projects, created instantly upon upload</li>
29+ <li>Deploy using <a href="https://pico.sh/file-uploads">rsync, sftp, or scp</a></li>
30+ <li>Promotion/rollback support</li>
31+ <li>Managed HTTPS for all projects</li>
32+ <li><a href="https://pico.sh/custom-domains#pgssh">Custom domains</a> for projects</li>
33+ <li><a href="https://pico.sh/pgs#user-defined-redirects">User-defined redirects</a></li>
34+ <li><a href="https://pico.sh/pgs#single-page-applications">SPA support</a></li>
35+ <li><a href="https://pico.sh/images#image-manipulation">Image manipulation API</a></li>
36+ <li><a href="https://pico.sh/pgs#what-file-types-are-supported">Only web assets are supported</a></li>
37+ </ul>
38+ </div>
39+
40+ <div class="box">
41+ <h2 class="text-xl">Publish your site with one command</h2>
42+
43+ <p>
44+ When your site is ready to be published, copy the files to our server with a
45+ familiar command:
46+ </p>
47+
48+ <pre>rsync -rv public/ pgs.sh:/myproj</pre>
49+
50+ <p>
51+ That's it! There's no need to formally create a project, we create them
52+ on-the-fly. Further, we provide TLS for every project automatically. In this
53+ case the url for the project above would look like:
54+ </p>
55+
56+ <pre>https://{username}-myproj.pgs.sh</pre>
57+ </div>
58+
59+ <div class="box">
60+ <h2 class="text-xl">Instant promotion and rollback</h2>
61+
62+ <p>
63+ Additionally you can setup a pipeline for promotion and rollbacks, which will
64+ instantly update your project.
65+ </p>
66+
67+ <pre>ssh pgs.sh link project-prod project-d0131d4</pre>
68+ </div>
69+
70+ <div>
71+ <a href="https://pico.sh/pgs" class="btn-link mt">
72+ GET STARTED
73+ </a>
74+ </div>
75+ </div>
76 </header>
77
78 {{template "marketing-footer" .}}