diff --git a/src/components/blog/HighlightedPosts.astro b/src/components/blog/HighlightedPosts.astro index 833be3d..8dcd4de 100644 --- a/src/components/blog/HighlightedPosts.astro +++ b/src/components/blog/HighlightedPosts.astro @@ -1,5 +1,5 @@ --- -import { Image } from "@astrojs/image/components"; +import Picture from "~/components/core/Picture.astro"; import { findPostsByIds } from "~/utils/posts"; import { findImage } from "~/utils/images"; @@ -36,11 +36,13 @@ const items = await Promise.all( { items.map((post) => (
- {post.title}

diff --git a/src/layouts/BlogLayout.astro b/src/layouts/BlogLayout.astro index 2490e60..cde38e1 100644 --- a/src/layouts/BlogLayout.astro +++ b/src/layouts/BlogLayout.astro @@ -5,7 +5,7 @@ const { meta } = Astro.props; --- -
+