We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d9f6ef commit 77334b3Copy full SHA for 77334b3
web/src/app/(content)/(info)/blog/[id]/page.tsx
@@ -44,6 +44,15 @@ const BlogPost = ({ params }: BlogPageProps) => {
44
45
return (
46
<>
47
+ {post.image && (
48
+ <Image
49
+ src={post.image}
50
+ alt=''
51
+ className='w-full h-[30vh] md:h-[50vh] object-cover mb-8 mt-[-2.5rem] rounded-xl'
52
+ width={1920}
53
+ height={1080}
54
+ />
55
+ )}
56
<article className='max-w-screen-md mx-auto mb-36'>
57
<Link
58
href='/help'
0 commit comments