@levino/shipyard-blog 0.8.2 → 0.8.3

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.
@@ -142,11 +142,12 @@ const tagBaseUrl = i18n
142
142
  return isFirst && hasImage ? (
143
143
  /* Featured first post — full-width card with image */
144
144
  <article class="card bg-base-100 shadow-sm relative" data-testid="blog-post-item">
145
- <figure>
145
+ <figure class="max-h-80">
146
146
  <Image
147
147
  src={entry.data.image}
148
148
  alt={entry.data.title}
149
- class="w-full object-cover"
149
+ width={1600}
150
+ class="w-full h-80 object-cover"
150
151
  loading="eager"
151
152
  />
152
153
  </figure>
@@ -181,6 +182,7 @@ const tagBaseUrl = i18n
181
182
  <Image
182
183
  src={entry.data.image}
183
184
  alt={entry.data.title}
185
+ width={384}
184
186
  class="h-full w-full object-cover"
185
187
  loading="lazy"
186
188
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levino/shipyard-blog",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "Blog plugin for shipyard with pagination, sidebar, and git metadata",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -33,7 +33,7 @@
33
33
  "license": "MIT",
34
34
  "homepage": "https://shipyard.levinkeller.de",
35
35
  "dependencies": {
36
- "@levino/shipyard-base": "^0.8.2",
36
+ "@levino/shipyard-base": "^0.8.3",
37
37
  "ramda": "^0.31",
38
38
  "yaml": "^2.8.3"
39
39
  },