paperastro 1.1.1 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +54 -8
  2. package/package.json +12 -4
package/README.md CHANGED
@@ -1,9 +1,3 @@
1
- Here is your **complete, clean, professional README.md** with the **Vercel deploy badge added** in the correct place (directly under the title).
2
- No emojis, no fluff, fully polished.
3
-
4
- All key concepts remain linked so you can explore or extend any section instantly.
5
-
6
- ---
7
1
 
8
2
  # PaperAstro
9
3
 
@@ -41,8 +35,8 @@ You can explore Git installation.
41
35
 
42
36
  ## Screenshot
43
37
 
44
- Image not displayed here.
45
- You can explore screenshot usage.
38
+ ![PaperAstro Screenshot](public/screenshot.png)
39
+
46
40
 
47
41
  ---
48
42
 
@@ -128,4 +122,56 @@ GitHub: [https://github.com/fabformhub/paperastro](https://github.com/fabformhub
128
122
  [https://www.npmjs.com/package/@fabform/paperastro](https://www.npmjs.com/package/@fabform/paperastro)
129
123
  You can explore the npm package.
130
124
 
125
+
126
+ ## Tech Stack
127
+
128
+ PaperAstro is intentionally simple and built on proven tools:
129
+
130
+ - **Astro** — fast, content‑focused, zero‑JS by default
131
+ - **PaperCSS** — lightweight, sketch‑inspired styling
132
+ - **Fabform** — backend‑free form handling
133
+ - **MDX** — write content with embedded components
134
+ - **Sharp** — automatic image optimization
135
+ - **Vercel** — frictionless deployment
136
+
137
+ ## Form Handling with Fabform
138
+
139
+ PaperAstro ships with **first‑class Fabform support**.
140
+ No plugins. No server code. No API keys.
141
+
142
+ ### Why Fabform?
143
+
144
+ - Zero backend setup
145
+ - Instant form submissions
146
+ - Spam protection without captchas
147
+ - Email notifications out of the box
148
+ - Clean, modern dashboard
149
+ - Webhooks, CSV export, redirects, analytics
150
+
151
+ ### Connect a Form
152
+
153
+ Every form in PaperAstro is already wired for Fabform:
154
+
155
+ ```html
156
+ <form action="https://fabform.io/f/{YOUR_FORM_ID}" method="post">
157
+
158
+
159
+ ```
160
+
161
+ Here’s a clean, polished addition you can drop straight into the bottom of your README.
162
+ It keeps the tone consistent with the rest of the document and gives Fabform a proper spotlight without bloating the file.
163
+
164
+ ---
165
+
166
+ ## Fabform.io
167
+
168
+ PaperAstro is built to work seamlessly with **Fabform**, a modern form‑handling platform designed for developers who want backend‑free submissions, instant notifications, and a clean dashboard.
169
+
170
+ Fabform powers all forms in this template out of the box — no servers, no API keys, no configuration.
171
+
172
+ ### Learn More
173
+
174
+ Visit **https://fabform.io** to explore features, pricing, and documentation.
175
+
131
176
  ---
177
+
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
- {
1
+ {
2
2
  "name": "paperastro",
3
- "version": "1.1.1",
3
+ "version": "2.1.0",
4
4
  "type": "module",
5
- "description": "A lightweight, professional Astro starter template styled with PaperCSS and powered by Fabform.",
5
+ "description": "A lightweight, professional Astro starter template styled with PaperCSS and featuring first-class Fabform integration for backend-free form handling.",
6
6
  "author": "Geoffrey Callaghan",
7
7
  "license": "MIT",
8
- "homepage": "https://github.com/fabformhub/paperastro#readme",
8
+ "homepage": "https://fabform.io",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "https://github.com/fabformhub/paperastro.git"
@@ -13,6 +13,10 @@
13
13
  "bugs": {
14
14
  "url": "https://github.com/fabformhub/paperastro/issues"
15
15
  },
16
+ "funding": {
17
+ "type": "service",
18
+ "url": "https://fabform.io"
19
+ },
16
20
  "keywords": [
17
21
  "astro",
18
22
  "starter",
@@ -21,6 +25,10 @@
21
25
  "blog",
22
26
  "documentation",
23
27
  "fabform",
28
+ "form-handling",
29
+ "contact-form",
30
+ "no-backend",
31
+ "form-backend",
24
32
  "static-site",
25
33
  "astro-theme"
26
34
  ],