diff --git a/package.json b/package.json index ac141b9..54322ee 100644 --- a/package.json +++ b/package.json @@ -18,8 +18,8 @@ "@tailwindcss/typography": "^0.5.4", "astro": "^1.0.0", "astro-icon": "^0.7.3", + "limax": "^3.0.0", "reading-time": "^1.5.0", - "slugify": "^1.6.5", "subfont": "^6.9.0" } } diff --git a/src/components/widgets/BlogList.astro b/src/components/widgets/BlogList.astro index 2896137..e3563d0 100644 --- a/src/components/widgets/BlogList.astro +++ b/src/components/widgets/BlogList.astro @@ -1,12 +1,12 @@ --- import BlogListItem from "~/components/widgets/BlogListItem.astro"; -const { page } = Astro.props; +const { posts } = Astro.props; ---