diff --git a/src/pages/posts/[slug].astro b/src/pages/posts/[slug].astro index 7b78b0f..5bfef23 100644 --- a/src/pages/posts/[slug].astro +++ b/src/pages/posts/[slug].astro @@ -6,6 +6,7 @@ import Datetime from "@components/Datetime.astro"; import Tag from "@components/Tag.astro"; import type { MarkdownInstance } from "astro"; import type { Frontmatter } from "@utils/types"; +import Breadcrumbs from "@components/Breadcrumbs.astro"; export interface Props { post: MarkdownInstance; @@ -32,6 +33,7 @@ const { Content, frontmatter } = Astro.props.post;
+

{frontmatter.title}

@@ -52,7 +54,7 @@ const { Content, frontmatter } = Astro.props.post;