From 4925d4e9036b709363409733a6f2e52b400e5a55 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Fri, 27 Mar 2026 16:25:53 +0000 Subject: bugfix: syntax error in posts page Oops --- src/pages/posts/[...slug].astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index e62b109..477207b 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -2,7 +2,7 @@ import { getCollection, type CollectionEntry } from "astro:content"; import Layout from "@/layouts/main.astro"; import { buttonVariants } from "@/components/ui/button"; -import BlogPostCard "@/components/BlogPostCard.astro"; +import BlogPostCard from "@/components/BlogPostCard.astro"; import OpenRing from "@/components/OpenRing.astro"; export async function getStaticPaths() { -- cgit