summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIwanIDev <iwan@iwani.dev>2026-03-27 16:25:53 +0000
committerIwanIDev <iwan@iwani.dev>2026-03-27 16:25:53 +0000
commit4925d4e9036b709363409733a6f2e52b400e5a55 (patch)
treea05838405142503060d1917acc66b98a6f108dea
parentf01178a831da7fbd34ce1fedd9c6ebccbfa5aa94 (diff)
bugfix: syntax error in posts page
Oops
-rw-r--r--src/pages/posts/[...slug].astro2
1 files changed, 1 insertions, 1 deletions
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() {