@@ -12,7 +12,7 @@ export default function Blog(props) {
12
12
)
13
13
const currentTag = asPath .startsWith (" /blog" )
14
14
? " "
15
- : asPath .replace (" /tags/" , " " ).replace (/ \/ $ / , ' ' )
15
+ : asPath .replace (" /tags/" , " " ).replace (/ \/ $ / , " " )
16
16
//
17
17
const tags = blogs
18
18
.flatMap (blog => blog .frontMatter .tags )
@@ -33,7 +33,7 @@ export default function Blog(props) {
33
33
data-active = { currentTag === tag ? " " : undefined }
34
34
className = { clsx (" tag [&[data-active]]:bg-primary capitalize" )}
35
35
>
36
- { tag .replaceAll (' - ' , ' ' )} ({ count } )
36
+ { tag .replaceAll (" - " , " " )} ({ count } )
37
37
</NextLink >
38
38
))}
39
39
</div >
@@ -46,11 +46,11 @@ export default function Blog(props) {
46
46
as = { Link }
47
47
href = { page .route }
48
48
key = { page .route }
49
- className = " hover:!border-primary transition-colors"
49
+ className = " hover:!border-primary transition-colors flex flex-col "
50
50
>
51
51
<div className = " gap-2 flex mb-7" >
52
52
{ page .frontMatter .tags .map (tag => (
53
- <Tag key = { tag } >{ tag .replaceAll (' - ' , ' ' )} </Tag >
53
+ <Tag key = { tag } >{ tag .replaceAll (" - " , " " )} </Tag >
54
54
))}
55
55
</div >
56
56
<div className = " font-extrabold text-3xl text-balance" >
@@ -67,7 +67,9 @@ export default function Blog(props) {
67
67
<span className = " border-r border-gray-500" />
68
68
<span >by { page .frontMatter .byline } </span >
69
69
</div >
70
- <span className = " text-primary block font-bold" >Read more →</span >
70
+ <span className = " text-primary block font-bold mt-auto" >
71
+ Read more →
72
+ </span >
71
73
</Card >
72
74
),
73
75
)
0 commit comments