astro-blog-kit 0.2.0 → 0.2.1

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 (3) hide show
  1. package/bin/cli.js +3 -1
  2. package/cli.ts +3 -1
  3. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -53,10 +53,12 @@ async function main() {
53
53
  }),
54
54
  defaultLayout: () => p.select({
55
55
  message: "Default layout",
56
+ // DESPUÉS
56
57
  options: [
57
58
  { value: "magazine", label: "Magazine \u2014 featured post + grid" },
58
59
  { value: "grid", label: "Grid \u2014 3 column card grid" },
59
- { value: "list", label: "List \u2014 horizontal rows" }
60
+ { value: "featured", label: "Featured \u2014 large hero + grid below" },
61
+ { value: "cards", label: "Cards \u2014 image background + text overlay" }
60
62
  ]
61
63
  }),
62
64
  locale: () => p.text({
package/cli.ts CHANGED
@@ -80,10 +80,12 @@ async function main() {
80
80
  defaultLayout: () =>
81
81
  p.select({
82
82
  message: "Default layout",
83
+ // DESPUÉS
83
84
  options: [
84
85
  { value: "magazine", label: "Magazine — featured post + grid" },
85
86
  { value: "grid", label: "Grid — 3 column card grid" },
86
- { value: "list", label: "Listhorizontal rows" },
87
+ { value: "featured", label: "Featuredlarge hero + grid below" },
88
+ { value: "cards", label: "Cards — image background + text overlay" },
87
89
  ],
88
90
  }),
89
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-blog-kit",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A ready-to-use blog system for Astro with WordPress headless support, optional i18n, multiple layouts, and a comment system.",
5
5
  "type": "module",
6
6
  "license": "MIT",