feat(article): instant preview from blog cards - show title, image, summary, date immediately via navigation state while content loads

This commit is contained in:
Gigi
2025-10-22 15:33:37 +02:00
parent 4d032372dc
commit 51c364ea53
2 changed files with 36 additions and 2 deletions

View File

@@ -50,6 +50,14 @@ const BlogPostCard: React.FC<BlogPostCardProps> = ({ post, href, level, readingP
return (
<Link
to={href}
state={{
previewData: {
title: post.title,
image: post.image,
summary: post.summary,
published: post.published
}
}}
className={`blog-post-card ${level ? `level-${level}` : ''}`}
style={{ textDecoration: 'none', color: 'inherit' }}
>