diff --git a/src/components/Comments.astro b/src/components/Comments.astro new file mode 100644 index 0000000..5fcd65d --- /dev/null +++ b/src/components/Comments.astro @@ -0,0 +1,32 @@ +--- +const category = "Announcements"; +const categoryId = "DIC_kwDOJfmscs4CdNE6"; +const crossorigin = "anonymous"; +const inputPosition = "bottom"; +const lang = "en"; +const mapping = "title"; +const metadata = "0"; +const reactions = "1"; +const repo = "valentineus/valentineus.github.io"; +const repoId = "R_kgDOJfmscg"; +const strict = "1"; +const theme = "transparent_dark"; +--- + + diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index bbf3f98..2593921 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -1,5 +1,6 @@ --- import { type CollectionEntry, getCollection } from "astro:content"; +import Comments from "../../components/Comments.astro"; import Layout from "../../layouts/PageLayout.astro"; export async function getStaticPaths() { @@ -34,4 +35,5 @@ const { Content, remarkPluginFrontmatter } = await post.render();

+