diff --git a/components/blog/post.tsx b/components/blog/post.tsx index 4ff9fb7..378c444 100644 --- a/components/blog/post.tsx +++ b/components/blog/post.tsx @@ -77,7 +77,7 @@ export default function SinglePost({ post: initialPost, author, sessionUser, tag
{ post?.cover && ( - {post?.title} + {post?.title} ) }

{post?.title}

diff --git a/components/image.tsx b/components/image.tsx index 68aff42..18f6baa 100644 --- a/components/image.tsx +++ b/components/image.tsx @@ -15,7 +15,7 @@ export function BlurImage(props: ComponentProps) { alt={props.alt} className={cn( props.className, - "duration-700 ease-in-out", + "duration-700 ease-in-out hover:scale-105", isLoading ? "scale-105 blur-lg" : "scale-100 blur-0", )} onLoadingComplete={() => setLoading(false)}