diff options
| author | IwanIDev <iwan@iwani.dev> | 2026-03-27 16:25:53 +0000 |
|---|---|---|
| committer | IwanIDev <iwan@iwani.dev> | 2026-03-27 16:25:53 +0000 |
| commit | 4925d4e9036b709363409733a6f2e52b400e5a55 (patch) | |
| tree | a05838405142503060d1917acc66b98a6f108dea | |
| parent | f01178a831da7fbd34ce1fedd9c6ebccbfa5aa94 (diff) | |
bugfix: syntax error in posts page
Oops
| -rw-r--r-- | src/pages/posts/[...slug].astro | 2 |
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() { |
