@vdaluz/astro-blog 1.0.0 → 1.0.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vdaluz/astro-blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Token-driven Astro blog components, related-posts scoring, a schema factory, and Shiki config - proven in production on vdaluz.com and imperfectsystems.com.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"astro",
|
|
@@ -54,12 +54,14 @@ const heroImageWebp = post.data.heroImage?.replace(/\.(jpe?g|png|gif)$/i, '.webp
|
|
|
54
54
|
<a
|
|
55
55
|
href={href}
|
|
56
56
|
class="inline-flex items-center text-accent font-semibold hover:text-accent-strong transition-colors group"
|
|
57
|
+
aria-label={`${strings.readMore} ${post.data.title}`}
|
|
57
58
|
>
|
|
58
59
|
{strings.readMore}
|
|
59
60
|
<svg
|
|
60
61
|
class="w-4 h-4 ml-1 transform group-hover:translate-x-1 transition-transform duration-300"
|
|
61
62
|
viewBox="0 0 20 20"
|
|
62
63
|
fill="currentColor"
|
|
64
|
+
aria-hidden="true"
|
|
63
65
|
>
|
|
64
66
|
<path
|
|
65
67
|
fill-rule="evenodd"
|