diff --git a/app/[locale]/blog/[slug]/page.tsx b/app/[locale]/blog/[slug]/page.tsx
index 819a0a19..fd79c51d 100644
--- a/app/[locale]/blog/[slug]/page.tsx
+++ b/app/[locale]/blog/[slug]/page.tsx
@@ -88,7 +88,7 @@ export default async function BlogPost({ params }: BlogPostProps) {
}}
/>
-
+
{/* Title overlay on image */}
diff --git a/app/[locale]/blog/page.tsx b/app/[locale]/blog/page.tsx
index 5892351f..263efddd 100644
--- a/app/[locale]/blog/page.tsx
+++ b/app/[locale]/blog/page.tsx
@@ -73,7 +73,7 @@ export default async function BlogIndex({ params }: BlogIndexProps) {
sizes="100vw"
priority
/>
-
+
>
)}
@@ -177,11 +177,11 @@ export default async function BlogIndex({ params }: BlogIndexProps) {
sizes="(max-width: 768px) 100vw, 100vw"
loading="lazy"
/>
-
+
>
)}
-
+
{post.frontmatter.category && (
diff --git a/components/home/RecentPosts.tsx b/components/home/RecentPosts.tsx
index 332552aa..578ae707 100644
--- a/components/home/RecentPosts.tsx
+++ b/components/home/RecentPosts.tsx
@@ -60,11 +60,11 @@ export default async function RecentPosts({ locale, data }: RecentPostsProps) {
sizes="(max-width: 768px) 100vw, 100vw"
loading="lazy"
/>
-
+
>
)}
-
+
{post.frontmatter.category && (
diff --git a/next-env.d.ts b/next-env.d.ts
index 9edff1c7..c4b7818f 100644
--- a/next-env.d.ts
+++ b/next-env.d.ts
@@ -1,6 +1,6 @@
///
///
-import "./.next/types/routes.d.ts";
+import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.