Skip to content

Commit 0dcea85

Browse files
committed
feat: Enhance image rendering with rounded corners and add favicon
1 parent bd5d997 commit 0dcea85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/frontend/components/BlogImageRenderer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export function BlogImageRenderer({
152152
key={`image-${imageIndex}`}
153153
src={imageInfo.src}
154154
alt={imageInfo.alt}
155-
className={imageInfo.className}
155+
className={`rounded-lg ${imageInfo.className}`}
156156
width={
157157
imageInfo.width ? parseInt(imageInfo.width) : undefined
158158
}
@@ -209,7 +209,7 @@ export function BlogImageRenderer({
209209
key={`image-${imageIndex}`}
210210
src={imageInfo.src}
211211
alt={imageInfo.alt}
212-
className={imageInfo.className}
212+
className={`rounded-lg ${imageInfo.className}`}
213213
width={imageInfo.width ? parseInt(imageInfo.width) : undefined}
214214
height={
215215
imageInfo.height ? parseInt(imageInfo.height) : undefined

apps/frontend/public/favicon.ico

4.19 KB
Binary file not shown.

0 commit comments

Comments
 (0)