@m13v/seo-components 0.30.0 → 0.30.2
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
|
@@ -32,8 +32,12 @@ export function ArticleMeta({
|
|
|
32
32
|
<div className="w-7 h-7 rounded-full bg-gradient-to-br from-teal-500/40 to-teal-500/10 flex items-center justify-center text-xs font-semibold text-white">
|
|
33
33
|
{author.charAt(0)}
|
|
34
34
|
</div>
|
|
35
|
-
<span className="text-zinc-900 dark:text-zinc-100 font-medium">
|
|
36
|
-
|
|
35
|
+
<span className="text-zinc-900 dark:text-zinc-100 font-medium">
|
|
36
|
+
{author}
|
|
37
|
+
{authorRole && (
|
|
38
|
+
<span className="hidden sm:inline text-zinc-500 font-normal">, {authorRole}</span>
|
|
39
|
+
)}
|
|
40
|
+
</span>
|
|
37
41
|
</div>
|
|
38
42
|
<span aria-hidden="true">·</span>
|
|
39
43
|
<time dateTime={datePublished}>
|
|
@@ -29,7 +29,7 @@ export function GradientText({
|
|
|
29
29
|
|
|
30
30
|
return (
|
|
31
31
|
<motion.span
|
|
32
|
-
className={`
|
|
32
|
+
className={`bg-clip-text text-transparent ${className}`}
|
|
33
33
|
style={{
|
|
34
34
|
backgroundImage: gradient,
|
|
35
35
|
backgroundSize: "200% 100%",
|